package repository import ( "amocrm/internal/models" "context" ) type AccountRepository struct { } func NewAccountRepository() *AccountRepository { return &AccountRepository{} } func (r *AccountRepository) Updatelistusers(ctx context.Context) error { //TODO:IMPLEMENT ME return nil } func (r *AccountRepository) Gettinguserfromcash(ctx context.Context) (*models.UserListResp, error) { //TODO:IMPLEMENT ME return &models.UserListResp{}, nil } func (r *AccountRepository) Deletinguserutm(ctx context.Context, request *models.ListDeleteUTMIDsReq) error { //TODO:IMPLEMENT ME return nil } func (r *AccountRepository) Savinguserutm(ctx context.Context, request *models.SaveUserListUTMReq) (*models.ListSavedIDUTMResp, error) { //TODO:IMPLEMENT ME return &models.ListSavedIDUTMResp{}, nil } func (r *AccountRepository) Gettinguserutm(ctx context.Context) (*models.GetListUserUTMResp, error) { //TODO:IMPLEMENT ME return &models.GetListUserUTMResp{}, nil } func (r *AccountRepository) Softdeleteaccount(ctx context.Context) error { //TODO:IMPLEMENT ME return nil } func (r *AccountRepository) Getcurrentaccount(ctx context.Context) (*models.GetCurrentAccountResp, error) { //TODO:IMPLEMENT ME return &models.GetCurrentAccountResp{}, nil } func (r *AccountRepository) Connectaccount(ctx context.Context) (*models.ConnectAccountResp, error) { //TODO:IMPLEMENT ME return &models.ConnectAccountResp{}, nil }