attorest/atto-rest

View on GitHub
src/server.ts

Summary

Maintainability
A
0 mins
Test Coverage
import atto from './atto';

import * as index from './routes/index';
import * as chats from './routes/chats';

export default atto({
    '/': index,
    '/chat': chats,
    '/template': null,
});