18 lines
420 B
Go
18 lines
420 B
Go
|
package resolver
|
||
|
|
||
|
import (
|
||
|
"git.kmsign.ru/royalcat/tstor/daemons/atorrent"
|
||
|
"git.kmsign.ru/royalcat/tstor/src/vfs"
|
||
|
"github.com/go-git/go-billy/v5"
|
||
|
)
|
||
|
|
||
|
// This file will not be regenerated automatically.
|
||
|
//
|
||
|
// It serves as dependency injection for your app, add any dependencies you require here.
|
||
|
|
||
|
type Resolver struct {
|
||
|
ATorrentDaemon *atorrent.Daemon
|
||
|
VFS vfs.Filesystem
|
||
|
SourceFS billy.Filesystem
|
||
|
}
|