mirror of
https://gitdab.com/cadence/out-of-your-element.git
synced 2025-09-09 20:03:04 +02:00
13 lines
283 B
JavaScript
13 lines
283 B
JavaScript
// @ts-check
|
|
|
|
const fs = require("fs")
|
|
const yaml = require("js-yaml")
|
|
|
|
/**
|
|
* @typedef AppServiceRegistrationConfig
|
|
* @property {string} id
|
|
* @property {string} as_token
|
|
* @property {string} hs_token
|
|
*/
|
|
|
|
module.exports = yaml.load(fs.readFileSync("registration.yaml", "utf8"))
|