Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
NeKzor committed May 13, 2024
1 parent b0f8f45 commit 5197acf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ import { insertVideo } from './tasks/board_insert.ts';
const SERVER_HOST = Deno.env.get('SERVER_HOST')!;
const SERVER_PORT = parseInt(Deno.env.get('SERVER_PORT')!, 10);
const SERVER_SSL_CERT = Deno.env.get('SERVER_SSL_CERT')!;
const SERVER_SSL_KEY = Deno.env.get('SERVER_SSL_KEY')!;
const _SERVER_SSL_KEY = Deno.env.get('SERVER_SSL_KEY')!;
// NOTE: Clients should only handle one video per request.
const MAX_VIDEOS_PER_REQUEST = 1;
const AUTORENDER_PUBLIC_URI = Deno.env.get('AUTORENDER_PUBLIC_URI')!;
Expand Down

0 comments on commit 5197acf

Please sign in to comment.