merch provider

This commit is contained in:
nquidox 2026-03-08 14:07:00 +03:00
parent 9ddeefd34b
commit 03bcda8eab
4 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,8 @@
package common
import "context"
type MerchProvider interface {
GetTasks(ctx context.Context) ([]Task, error)
InsertRecords(ctx context.Context) error
}