20 lines
272 B
Go
20 lines
272 B
Go
package repository
|
|
|
|
import (
|
|
"amocrm/internal/models"
|
|
"context"
|
|
)
|
|
|
|
func (r *Repository) WebhookCreate(ctx context.Context, tokens models.Token) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
func (r *Repository) WebhookDelete(ctx context.Context) error {
|
|
//TODO:IMPLEMENT ME
|
|
|
|
return nil
|
|
|
|
}
|