19 lines
410 B
Go
19 lines
410 B
Go
package account
|
|
|
|
import (
|
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/app"
|
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/config"
|
|
"github.com/anytypeio/go-anytype-infrastructure-experiments/pkg/acl/account"
|
|
)
|
|
|
|
const CName = "common.account"
|
|
|
|
type Service interface {
|
|
app.Component
|
|
Account() *account.AccountData
|
|
}
|
|
|
|
type ConfigGetter interface {
|
|
GetAccount() config.Account
|
|
}
|