tstor/daemons/atorrent/delivery/graphql/resolver.go
royalcat a89b9e7303
Some checks failed
docker / build-docker (push) Failing after 57s
fix atorrent submodule error
2025-01-08 16:39:01 +03:00

17 lines
419 B
Go

package graphql
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
}