Baphomet is the dedicated bot for nulloctet matrix
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.

10 lines
229 B

  1. let bot = require('./bot/bot');
  2. let { getConfig } = require('./bot/config');
  3. let engine = require('./bot/engine');
  4. let config = getConfig("../data/config.json")
  5. engine.create(
  6. config,
  7. bot.create(config)
  8. ).init().run();