Add infrastructure for AccountS in DataManager

This commit is contained in:
TeoV
2020-12-21 10:04:18 +02:00
committed by Dan Christian Bogos
parent a287c9d1b2
commit 5775d09c7b
134 changed files with 4043 additions and 3804 deletions

View File

@@ -135,6 +135,12 @@ type DataDB interface {
GetActionProfileDrv(string, string) (*ActionProfile, error)
SetActionProfileDrv(*ActionProfile) error
RemoveActionProfileDrv(string, string) error
GetAccountProfileDrv(string, string) (*utils.AccountProfile, error)
SetAccountProfileDrv(profile *utils.AccountProfile) error
RemoveAccountProfileDrv(string, string) error
GetAccount2Drv(string, string) (*utils.Account, error)
SetAccount2Drv(*utils.Account) error
RemoveAccount2Drv(string, string) error
}
type StorDB interface {