1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-25 08:09:43 +02:00

go fmt fixes

This commit is contained in:
Harvey Kandola 2017-12-11 09:47:37 +00:00
parent c5c988709d
commit 6cc78f76da
3 changed files with 8 additions and 18 deletions

View file

@ -103,14 +103,14 @@ type NewPage struct {
Meta Meta `json:"meta"`
}
// PageSequenceRequest details a page ID and its sequence within the document.
type PageSequenceRequest struct {
// SequenceRequest details a page ID and its sequence within the document.
type SequenceRequest struct {
PageID string `json:"pageId"`
Sequence float64 `json:"sequence"`
}
// PageLevelRequest details a page ID and level.
type PageLevelRequest struct {
// LevelRequest details a page ID and level.
type LevelRequest struct {
PageID string `json:"pageId"`
Level int `json:"level"`
}