20 lines
342 B
Go
20 lines
342 B
Go
package repository
|
|
|
|
import (
|
|
"amocrm/internal/models"
|
|
"context"
|
|
)
|
|
|
|
func (r *Repository) GettingFieldsFromCash(ctx context.Context) (*models.UserListFieldsResp, error) {
|
|
//TODO:IMPLEMENT ME
|
|
|
|
return &models.UserListFieldsResp{}, nil
|
|
}
|
|
|
|
func (r *Repository) UpdateListCustom(ctx context.Context) error {
|
|
//TODO:IMPLEMENT ME
|
|
|
|
return nil
|
|
|
|
}
|