Skip to content

Commit

Permalink
BREAKING: Remove initialization check
Browse files Browse the repository at this point in the history
Removing initialization checks since now SPIKE Nexus does not start until it fetches a root key from the keepers.

Signed-off-by: Volkan Özçelik <[email protected]>
  • Loading branch information
v0lkan committed Dec 27, 2024
1 parent 4afae14 commit 0ef0af7
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions api/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -340,13 +340,3 @@ func (a *Api) PutSecret(path string, data map[string]string) error {
func (a *Api) UndeleteSecret(path string, versions []int) error {
return impl.UndeleteSecret(a.source, path, versions)
}

// Init initializes SPIKE Nexus.
func (a *Api) Init() error {
return impl.Init(a.source)
}

// CheckInitState checks the initialization state of SPIKE Nexus.
func (a *Api) CheckInitState() (data.InitState, error) {
return impl.CheckInitState(a.source)
}

0 comments on commit 0ef0af7

Please sign in to comment.