Skip to content
This repository has been archived by the owner on May 29, 2024. It is now read-only.

Commit

Permalink
fixes imports
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Griffin <[email protected]>
  • Loading branch information
m00sey committed Oct 4, 2023
1 parent 8533c2d commit d3a3f00
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/le.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { SignifyClient } from 'signify-ts';
import { Schema } from './schema';
import { Rules } from './rules';
import { schema } from './schema';
import { rules } from './rules';
import { AID } from '.';
import { credentials } from './credentials';
import { edges } from './edges';
Expand Down Expand Up @@ -48,10 +48,10 @@ export class LE {
.issue(
this.name,
this.registryAID,
Schema.ECRAuth,
schema.ECRAuth,
issuee,
data,
Rules.ECRAuth,
rules.ECRAuth,
edge,
false
);
Expand All @@ -75,10 +75,10 @@ export class LE {
.issue(
this.name,
this.registryAID,
Schema.OORAuth,
schema.OORAuth,
issuee,
data,
Rules.OORAuth,
rules.OORAuth,
edge,
false
);
Expand Down

0 comments on commit d3a3f00

Please sign in to comment.