ch9.2-9.3

This commit is contained in:
lbenedar
2026-03-18 16:31:33 +03:00
parent 985340c557
commit 17267ed145
6 changed files with 149 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ type Models struct {
Get(id int64) (*Movie, error)
Update(movie *Movie) error
Delete(id int64) error
GetAll(title string, genres []string, filter Filters) ([]*Movie, error)
}
}