tstor/daemons/atorrent/delivery/graphql/resolver.go

18 lines
419 B
Go
Raw Normal View History

2025-01-08 13:39:01 +00:00
package graphql
2025-01-07 22:25:46 +00:00
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
}