mirror of
https://github.com/Teamlinker/Teamlinker.git
synced 2025-06-03 03:00:17 +00:00
17 lines
481 B
TypeScript
17 lines
481 B
TypeScript
import { DefaultContext, DefaultState } from "koa";
|
|
import Application from "../../common/app/app";
|
|
import "../http/field";
|
|
import "../http/issue";
|
|
import "../http/issueType";
|
|
import "../http/module";
|
|
import "../http/project";
|
|
import "../http/release";
|
|
import "../http/tag";
|
|
import "../http/workflow";
|
|
import "../rpc/cooperation";
|
|
export default class Cooperation extends Application {
|
|
override async config(app: import("koa")<DefaultState, DefaultContext>) {
|
|
|
|
}
|
|
}
|