kopia lustrzana https://github.com/badgen/badgen.net
12 wiersze
211 B
TypeScript
12 wiersze
211 B
TypeScript
|
import serveBadge from './serve-badge'
|
||
|
|
||
|
export default function (req, res) {
|
||
|
const params = {
|
||
|
subject: 'Badgen',
|
||
|
status: '404',
|
||
|
color: 'orange'
|
||
|
}
|
||
|
|
||
|
serveBadge(req, res, { code: 404, params })
|
||
|
}
|