notes about invites

This commit is contained in:
Cadence Ember 2023-05-01 17:05:47 +12:00
parent 8a0c2b5663
commit 51480e21e5
2 changed files with 14 additions and 3 deletions

View file

@ -1,4 +1,13 @@
// @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"))