mirror of
https://github.com/EnixCoda/Gitako.git
synced 2026-03-11 08:54:44 +00:00
8 lines
228 B
TypeScript
8 lines
228 B
TypeScript
import { NowRequest, NowResponse } from '@now/node'
|
|
|
|
export default function (request: NowRequest, response: NowResponse) {
|
|
response.writeHead(302, {
|
|
Location: 'https://github.com/EnixCoda/Gitako',
|
|
})
|
|
response.end()
|
|
}
|