serve: add dlna server
This commit is contained in:
parent
5edfd31a6d
commit
0b7fdf16a2
8 changed files with 1318 additions and 0 deletions
|
@ -3,6 +3,8 @@ package serve
|
|||
import (
|
||||
"errors"
|
||||
|
||||
"github.com/ncw/rclone/cmd/serve/dlna"
|
||||
|
||||
"github.com/ncw/rclone/cmd"
|
||||
"github.com/ncw/rclone/cmd/serve/ftp"
|
||||
"github.com/ncw/rclone/cmd/serve/http"
|
||||
|
@ -19,6 +21,9 @@ func init() {
|
|||
if restic.Command != nil {
|
||||
Command.AddCommand(restic.Command)
|
||||
}
|
||||
if dlna.Command != nil {
|
||||
Command.AddCommand(dlna.Command)
|
||||
}
|
||||
if ftp.Command != nil {
|
||||
Command.AddCommand(ftp.Command)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue