amocrm/internal/repository/different.go
2024-04-08 18:24:50 +03:00

101 lines
2.0 KiB
Go

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
}