out-of-your-element/matrix/read-registration.js

14 lines
283 B
JavaScript
Raw Normal View History

2023-05-01 05:05:47 +00:00
// @ts-check
2023-04-30 12:57:30 +00:00
const fs = require("fs")
const yaml = require("js-yaml")
2023-05-01 05:05:47 +00:00
/**
* @typedef AppServiceRegistrationConfig
* @property {string} id
* @property {string} as_token
* @property {string} hs_token
*/
2023-04-30 12:57:30 +00:00
module.exports = yaml.load(fs.readFileSync("registration.yaml", "utf8"))