Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Service ¶
type Service interface { RegisterSyncer(sync services.Syncer) OpenFile(ctx context.Context, path string, bucketName string) (domain.OpenFileInfo, error) GetConfig(ctx context.Context) domain.AppConfig ListDirs(ctx context.Context, path string, bucketName string) ([]domain.FileInfo, error) ListDir(ctx context.Context, path string, bucketName string) ([]domain.FileInfo, error) GenerateKeyPair(ctx context.Context, useForce bool) (domain.KeyPair, error) CreateFolder(ctx context.Context, path string, bucketName string) error CreateBucket(ctx context.Context, slug string) (textile.Bucket, error) AddItems(ctx context.Context, sourcePaths []string, targetPath string, bucketName string) (<-chan domain.AddItemResult, domain.AddItemsResponse, error) CreateIdentity(ctx context.Context, username string) (*domain.Identity, error) GetIdentityByUsername(ctx context.Context, username string) (*domain.Identity, error) JoinBucket(ctx context.Context, slug string, threadinfo *domain.ThreadInfo) (bool, error) }
Service Layer should not depend on gRPC dependencies
type ServiceOption ¶
type ServiceOption func(o *serviceOptions)
func WithEnv ¶
func WithEnv(env env.SpaceEnv) ServiceOption
Click to show internal directories.
Click to hide internal directories.