Skip to content

Commit

Permalink
Fixed an oversight in dtstest.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeff-cohere committed Dec 2, 2024
1 parent af101c3 commit 853ac2f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions dtstest/dtstest.go
Original file line number Diff line number Diff line change
Expand Up @@ -276,3 +276,11 @@ func (db *Database) Endpoint() (endpoints.Endpoint, error) {
func (db *Database) LocalUser(orcid string) (string, error) {
return "testuser", nil
}

func (db *Database) Save() (databases.DatabaseSaveState, error) {
return databases.DatabaseSaveState{}, nil
}

func (db *Database) Load(state databases.DatabaseSaveState) error {
return nil
}

0 comments on commit 853ac2f

Please sign in to comment.