mirror of
https://github.com/fosrl/pangolin.git
synced 2025-06-21 20:58:57 +02:00
7 lines
297 B
TypeScript
7 lines
297 B
TypeScript
|
import { ensureActions } from "./ensureActions";
|
||
|
import { copyInConfig } from "./copyInConfig";
|
||
|
|
||
|
export async function runSetupFunctions() {
|
||
|
await ensureActions(); // make sure all of the actions are in the db and the roles
|
||
|
await copyInConfig(); // copy in the config to the db as needed
|
||
|
}
|