You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
333 B

const SeedAPIData = require('./app/SeedAPIData.patch')
const SeedWeeklyPlayerData = require('./app/SeedWeeklyPlayerData.patch')
module.exports = exports = async function(di) {
const api_patch = di.make(SeedAPIData)
await api_patch.run()
const player_patch = di.make(SeedWeeklyPlayerData)
await player_patch.run()
}