-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add jsonld type validator (#86)
* feat: add jsonld type validator * fix: holder * fix: subject * feat: temp enable * Revert "feat: temp enable" This reverts commit 2abb69d. * feat: add support for related resources * fix: type validation * fix: er * fix: types * fix: parse * fix: string * fix: check * fix: lint * feat: update did * feat: update go * fix: lint * feat: validate hash * fix: lint * fix: lint
- Loading branch information
Showing
12 changed files
with
1,124 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* | ||
Copyright SecureKey Technologies Inc. All Rights Reserved. | ||
SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package verifiable | ||
|
||
//go:generate mockgen -destination interfaces_mocks_test.go -package verifiable_test -source=interfaces.go | ||
|
||
import "net/http" | ||
|
||
// nolint | ||
type httpClient interface { | ||
Do(req *http.Request) (*http.Response, error) | ||
} |
Oops, something went wrong.