mirror of
https://gitlab.silvrtree.co.uk/martind2000/frontexpress.git
synced 2025-01-11 23:45:08 +00:00
13 lines
269 B
JavaScript
Executable File
13 lines
269 B
JavaScript
Executable File
import Application from './application';
|
|
import Router from './router';
|
|
import Middleware from './middleware';
|
|
|
|
function frontexpress() {
|
|
return new Application();
|
|
}
|
|
|
|
frontexpress.Router = Router;
|
|
frontexpress.Middleware = Middleware;
|
|
|
|
export default frontexpress;
|