codestats-readme/index.ts
2025-04-11 13:28:03 -06:00

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!')
})