merch provider
This commit is contained in:
parent
9ddeefd34b
commit
03bcda8eab
4 changed files with 43 additions and 0 deletions
20
internal/merch/provider.go
Normal file
20
internal/merch/provider.go
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
package merch
|
||||
|
||||
import (
|
||||
"context"
|
||||
"merch-api/internal/common"
|
||||
)
|
||||
|
||||
type provider struct{}
|
||||
|
||||
func newProvider() *provider {
|
||||
return &provider{}
|
||||
}
|
||||
|
||||
func (p *provider) GetTasks(ctx context.Context) ([]common.Task, error) {
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
func (p *provider) InsertRecords(ctx context.Context) error {
|
||||
return nil
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue