fix(server): lint errors

This commit is contained in:
Roberto Tonino
2021-05-13 20:47:48 +02:00
parent 6b8e3be014
commit 669854f799
6 changed files with 112 additions and 114 deletions

View File

@@ -3,7 +3,7 @@ import { settings, defaultSettings } from '../../../main'
const path: ApiHandler['path'] = '/getSettings'
const handler: ApiHandler['handler'] = async (_, res) => {
const handler: ApiHandler['handler'] = (_, res) => {
res.send({ settings, defaultSettings })
}