9 lines
182 B
TypeScript
9 lines
182 B
TypeScript
export const guild = {
|
|
id: 1,
|
|
name: 'GuildExample',
|
|
description: 'guild example.',
|
|
icon: null,
|
|
createdAt: new Date().toISOString(),
|
|
updatedAt: new Date().toISOString()
|
|
}
|