forked from OpenWF/SpaceNinjaServer
12 lines
272 B
TypeScript
12 lines
272 B
TypeScript
|
import { RequestHandler } from "express";
|
||
|
|
||
|
export const getGuildLogController: RequestHandler = (_req, res) => {
|
||
|
res.json({
|
||
|
RoomChanges: [],
|
||
|
TechChanges: [],
|
||
|
RosterActivity: [],
|
||
|
StandingsUpdates: [],
|
||
|
ClassChanges: []
|
||
|
});
|
||
|
};
|