9 lines
186 B
TypeScript
9 lines
186 B
TypeScript
import express from 'express';
|
|
import { Language } from '../langs/lang';
|
|
|
|
export class RoutePublic {
|
|
static setup(app: express.Application) {
|
|
|
|
app.use(Language.apply)
|
|
}
|
|
} |