mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-24 19:59:12 +00:00
6 lines
110 B
JavaScript
6 lines
110 B
JavaScript
module.exports = (R, $) => {
|
|
R.get('/api/servers', (ctx) => {
|
|
ctx.body = 'hi'
|
|
console.log($)
|
|
})
|
|
}
|