19 lines
424 B
TypeScript
19 lines
424 B
TypeScript
import { Controller } from './Controller';
|
|
import { ChildController } from './ChildController';
|
|
import { Page } from './Page';
|
|
import { GET } from './GET';
|
|
import { POST } from './POST';
|
|
import { PUT } from './PUT';
|
|
import { DELETE } from './DELETE';
|
|
import { ErrorHandler } from './ErrorHandler';
|
|
|
|
export {
|
|
Controller,
|
|
ChildController,
|
|
Page,
|
|
GET,
|
|
POST,
|
|
PUT,
|
|
DELETE,
|
|
ErrorHandler
|
|
};
|