mirror of
https://github.com/thelounge/thelounge
synced 2024-11-14 16:27:22 +00:00
11 lines
182 B
JavaScript
11 lines
182 B
JavaScript
"use strict";
|
|
|
|
import storage from "./localStorage";
|
|
import location from "./location";
|
|
|
|
export default class Auth {
|
|
static signout() {
|
|
storage.clear();
|
|
location.reload();
|
|
}
|
|
}
|