amocrm/internal/repository/different.go

83 lines
1.3 KiB
Go
Raw Normal View History

2024-04-04 09:42:40 +00:00
package repository
import (
"context"
)
type DifferentRepository struct {
}
func NewDifferentRepository() *DifferentRepository {
return &DifferentRepository{}
}
func (r *DifferentRepository) Getlisttags(ctx context.Context) error {
//TODO:IMPLEMENT ME
return nil
}
func (r *DifferentRepository) Updatelisttags(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) Getlistcustom(ctx context.Context) error {
//TODO:IMPLEMENT ME
return nil
}
func (r *DifferentRepository) Updatelistcustom(ctx context.Context) error {
//TODO:IMPLEMENT ME
return nil
}
func (r *DifferentRepository) Getlistpipelines(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) Getliststeps(ctx context.Context) error {
//TODO:IMPLEMENT ME
return nil
}
func (r *DifferentRepository) Updateliststeps(ctx context.Context) error {
//TODO:IMPLEMENT ME
return nil
}