18 lines
420 B
TypeScript
18 lines
420 B
TypeScript
import express from 'express'
|
|
import history from './api/history'
|
|
import topLangs from './api/top-langs'
|
|
import profile from './api/profile'
|
|
|
|
const app = express()
|
|
|
|
app.use('/profile', profile)
|
|
app.use('/history', history)
|
|
app.use('/toplang', topLangs)
|
|
|
|
app.get('/', (_, res) => {
|
|
res.redirect(301, 'https://git.basking.monster/gaiety/codestats-readme')
|
|
})
|
|
|
|
app.listen(3000, () => {
|
|
console.log('server launched!')
|
|
})
|