notion2ical/internal/models/server.go

9 lines
127 B
Go

package models
import "context"
type Server interface {
Start(ctx context.Context) error
Stop(ctx context.Context) error
}