We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77455cb commit af3e9e9Copy full SHA for af3e9e9
examples/iut/signatures/extract.mts
@@ -1,7 +1,11 @@
1
import { CAS } from "unilim/cas";
2
import { Signatures } from "unilim/iut/signatures";
3
4
-const cas = await CAS.initialize(Bun.env.USERNAME!, Bun.env.PASSWORD!);
+const cas = await CAS.restore(
5
+ Bun.env.USERNAME!, Bun.env.PASSWORD!,
6
+ Bun.env.CONNECTION!, Bun.env.KEY!
7
+);
8
+
9
const signatures = await Signatures.fromCAS(cas);
10
11
console.log(signatures.session);
0 commit comments