Yimaru-BackEnd/internal/services/event/port.go
OneTap Technologies 92250d61a8 event and odd data
2025-04-10 16:42:26 +03:00

9 lines
152 B
Go

package event
import "context"
type Service interface {
FetchLiveEvents(ctx context.Context) error
FetchUpcomingEvents(ctx context.Context) error
}