simplify storage inheritance

This commit is contained in:
Pascal Fischer
2024-03-14 11:42:25 +01:00
parent f31b06fc92
commit 27c3a4c5d6
9 changed files with 27 additions and 27 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
package settings
type repository interface {
type Repository interface {
FindSettings(accountID string) (Settings, error)
}