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