Versions in this module Expand all Collapse all v0 v0.1.0 Apr 10, 2025 Changes in this version + type Post struct + AuthorID int64 + Content string + CreatedAt time.Time + ID int64 + Status string + Tags []string + Title string + UpdatedAt time.Time + type PostCreateRequest struct + Content string + Tags []string + Title string + type PostResponse struct + Author *User + Message string + Post *Post + Status string + Time time.Time + type PostUpdateRequest struct + Content *string + Status *string + Tags *[]string + Title *string + type User struct + CreatedAt time.Time + Email string + ID int64 + Role string + UpdatedAt time.Time + Username string + type UserCreateRequest struct + Email string + Password string + Username string + type UserResponse struct + Message string + Status string + Time time.Time + User *User + type UserUpdateRequest struct + Email *string + Role *string + Username *string