chore: rename account to storage

This commit is contained in:
Noah Hsu
2022-07-10 14:45:39 +08:00
parent efa20cc7bd
commit fc1204c914
31 changed files with 548 additions and 548 deletions

View File

@ -17,10 +17,10 @@ type Meta interface {
Config() Config
// Init If already initialized, drop first
// need to unmarshal string to addition first
Init(ctx context.Context, account model.Account) error
Init(ctx context.Context, storage model.Storage) error
Drop(ctx context.Context) error
// GetAccount just get raw account
GetAccount() model.Account
// GetStorage just get raw storage
GetStorage() model.Storage
GetAddition() Additional
}