Versions in this module Expand all Collapse all v0 v0.6.0 Nov 24, 2024 v0.5.1 Nov 24, 2024 v0.5.0 Oct 27, 2024 Changes in this version + func DownloadFile(ctx context.Context, url string) ([]byte, error) + func GetDepartments() ([]string, error) + func SaveUser(ctx context.Context, user *User) error + type User struct + Age int + Department string + ID int + IsActive bool + Name string + func GetUser(ctx context.Context, id int) (*User, error) + func GetUsers(ctx context.Context, ids []int) ([]*User, error) + func ListUsers(ctx context.Context, query *UserQuery) ([]*User, error) + type UserQuery struct + Department string + Page int