package repository import ( "amocrm/internal/models" "context" ) type DifferentRepository struct { } func NewDifferentRepository() *DifferentRepository { return &DifferentRepository{} } func (r *DifferentRepository) Gettingstepsfromcash(ctx context.Context) (*models.UserListStepsResp, error) { //TODO:IMPLEMENT ME return &models.UserListStepsResp{}, nil } func (r *DifferentRepository) Updateliststeps(ctx context.Context) error { //TODO:IMPLEMENT ME return nil } func (r *DifferentRepository) Webhookcreate(ctx context.Context) error { //TODO:IMPLEMENT ME return nil } func (r *DifferentRepository) Webhookdelete(ctx context.Context) error { //TODO:IMPLEMENT ME return nil } func (r *DifferentRepository) Updatelistpipelines(ctx context.Context) error { //TODO:IMPLEMENT ME return nil } func (r *DifferentRepository) Gettingpipelinesfromcash(ctx context.Context) (*models.UserListPipelinesResp, error) { //TODO:IMPLEMENT ME return &models.UserListPipelinesResp{}, nil } func (r *DifferentRepository) Changequizsettings(ctx context.Context, request *models.RulesReq) error { //TODO:IMPLEMENT ME return nil } func (r *DifferentRepository) Setquizsettings(ctx context.Context, request *models.RulesReq) error { //TODO:IMPLEMENT ME return nil } func (r *DifferentRepository) Gettingquizrules(ctx context.Context) (*models.Rule, error) { //TODO:IMPLEMENT ME return &models.Rule{}, nil } func (r *DifferentRepository) Gettingtagsfromcash(ctx context.Context) (*models.UserListTagsResp, error) { //TODO:IMPLEMENT ME return &models.UserListTagsResp{}, nil } func (r *DifferentRepository) Updatelisttags(ctx context.Context) error { //TODO:IMPLEMENT ME return nil } func (r *DifferentRepository) Gettingfieldsfromcash(ctx context.Context) (*models.UserListFieldsResp, error) { //TODO:IMPLEMENT ME return &models.UserListFieldsResp{}, nil } func (r *DifferentRepository) Updatelistcustom(ctx context.Context) error { //TODO:IMPLEMENT ME return nil }