Skip to content

Commit

Permalink
[ATL-2427] feat(pollux): Simplify DIDDocument Resolution and Schema V…
Browse files Browse the repository at this point in the history
…aldiation (#174)
  • Loading branch information
CryptoKnightIOG authored Nov 28, 2022
1 parent 458795b commit 5981a77
Show file tree
Hide file tree
Showing 6 changed files with 230 additions and 488 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package io.iohk.atala.pollux.vc.jwt

import zio.IO
import zio.{IO, Task}

import java.time.Instant

trait DidResolver {
def resolve(didUrl: String): IO[Throwable, DIDResolutionResult]
def resolve(didUrl: String): IO[String, DIDResolutionResult]
}

trait DIDResolutionResult()
Expand Down
Loading

0 comments on commit 5981a77

Please sign in to comment.