Blame view
server/modules/startup.js
182 Bytes
c39994410
|
1 2 |
import { setBrowserPolicies } from './set-browser-policies'; import { seedDatabase } from './seed-database'; |
fcc3fa321
|
3 |
|
c39994410
|
4 5 6 7 |
export function startup() { setBrowserPolicies(); seedDatabase(); } |