move ffmpeg code to its own file, rename types folder to lib

This commit is contained in:
waveringana 2023-10-29 21:04:58 -04:00
parent f322b45ee1
commit 6d779e7811
13 changed files with 310 additions and 253 deletions

View file

@ -3,8 +3,8 @@ import express from "express";
import passport from "passport";
import {Strategy as LocalStrategy} from "passport-local";
import {User} from "../types/lib";
import {db, UserRow} from "../types/db";
import {User} from "../lib/lib";
import {db, UserRow} from "../lib/db";
const router = express.Router();