package
Version:
v0.0.0-...-c955e10
Opens a new window with list of versions in this module.
Published: Jan 28, 2023
License: MIT
Opens a new window with license information.
Imports: 1
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type NewUser struct {
Name string `json:"name"`
}
type SubTask struct {
ID string `json:"id"`
Title string `json:"title"`
Description string `json:"description"`
StoryPoint *int `json:"storyPoint"`
RegisteredAt time.Time `json:"registeredAt"`
User *User `json:"user"`
}
type Task struct {
ID string `json:"id"`
Title string `json:"title"`
Description string `json:"description"`
StoryPoint *int `json:"storyPoint"`
RegisteredAt time.Time `json:"registeredAt"`
User *User `json:"user"`
SubTasks []*SubTask `json:"subTasks"`
}
type User struct {
ID string `json:"id"`
Name string `json:"name"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.