25 lines
567 B
Go
25 lines
567 B
Go
package repository
|
|
|
|
import (
|
|
"amocrm/internal/models"
|
|
"context"
|
|
)
|
|
|
|
func (r *Repository) DeletingUserUtm(ctx context.Context, request *models.ListDeleteUTMIDsReq) error {
|
|
//TODO:IMPLEMENT ME
|
|
|
|
return nil
|
|
}
|
|
|
|
func (r *Repository) SavingUserUtm(ctx context.Context, request *models.SaveUserListUTMReq) (*models.ListSavedIDUTMResp, error) {
|
|
//TODO:IMPLEMENT ME
|
|
|
|
return &models.ListSavedIDUTMResp{}, nil
|
|
}
|
|
|
|
func (r *Repository) GettingUserUtm(ctx context.Context) (*models.GetListUserUTMResp, error) {
|
|
//TODO:IMPLEMENT ME
|
|
|
|
return &models.GetListUserUTMResp{}, nil
|
|
}
|