2021-07-26 13:40:23 +00:00
|
|
|
import type { RouteDef } from "../route-config";
|
2022-08-22 14:29:35 +00:00
|
|
|
import { GroupsRoute, GroupsWithIdRoute } from "./routes/Groups";
|
2021-07-26 13:40:23 +00:00
|
|
|
import { GroupsSearchRoute } from "./routes/GroupsSearch";
|
|
|
|
|
2022-08-22 14:29:35 +00:00
|
|
|
const routes: RouteDef[] = [GroupsSearchRoute, GroupsRoute, GroupsWithIdRoute];
|
2021-07-26 13:40:23 +00:00
|
|
|
|
|
|
|
export default routes;
|