matrix-dimension/src/OpenID.js
2017-05-26 23:08:24 -06:00

11 lines
199 B
JavaScript

/**
* Serves the purpose of being a documentation endpoint
*/
class OpenID {
access_token = "";
token_type = "";
matrix_server_name = "";
expires_in = 0;
}
module.exports = OpenID;