aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chaika.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/chaika.js b/chaika.js
index afd6a76..9855b5c 100644
--- a/chaika.js
+++ b/chaika.js
@@ -65,6 +65,7 @@ let INFO =
(function () {
const Chaika = {};
Components.utils.import("resource://chaika-modules/ChaikaThread.js", Chaika);
+ Components.utils.import("resource://chaika-modules/Chaika2chViewer.js", Chaika);
function deleteCurrentThreadLog () {
let currentURI = getBrowser().currentURI.QueryInterface(Ci.nsIURL);
@@ -106,6 +107,16 @@ let INFO =
liberator.echoerr(ex);
}
}
+ ),
+ new Command(
+ ['auth'],
+ 'Maru auth(?)',
+ function (args) {
+ Chaika.Chaika2chViewer.auth();
+ },
+ {
+ argCount: '0'
+ }
)
]
},