add init functions

This commit is contained in:
2025-12-19 14:26:28 +02:00
parent c0a187d461
commit cd465d42a3
6 changed files with 81 additions and 1 deletions

View File

@@ -5,4 +5,6 @@ type UserCRUD interface {
GetBy(by, value string) (*User, error)
Update(user *User) error
Delete(id int64) error
init() error
}