Files

9 lines
198 B
Go

package marketplace
import "context"
type Repository interface {
// GetMarketplaceByID retrieves a marketplace by its ID.
GetMarketplaceByID(ctx context.Context, id int) (*Marketplace, error)
}