5 lines
138 B
TypeScript
5 lines
138 B
TypeScript
export class Endpoints {
|
|
public static readonly TICKET = 'ticket';
|
|
public static readonly MINT_TICKETS = Endpoints.TICKET + '/mint'
|
|
}
|