thelounge/client/js/auth.js
2019-11-25 20:13:12 +02:00

12 lines
182 B
JavaScript

"use strict";
import storage from "./localStorage";
import location from "./location";
export default class Auth {
static signout() {
storage.clear();
location.reload();
}
}