Versions in this module Expand all Collapse all v0 v0.8.1 Feb 9, 2026 v0.8.0 Aug 18, 2025 v0.7.0 Feb 2, 2025 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