update frontend backend (#129)

This commit is contained in:
Michael Quigley
2022-12-02 10:46:53 -05:00
parent 9ab7eeebf3
commit 38c83fda92
18 changed files with 1125 additions and 21 deletions

View File

@@ -18,19 +18,19 @@ import (
type PublicFrontend struct {
// created at
CreatedAt int64 `json:"created_at,omitempty"`
CreatedAt int64 `json:"createdAt,omitempty"`
// public name
PublicName string `json:"public_name,omitempty"`
PublicName string `json:"publicName,omitempty"`
// token
Token string `json:"token,omitempty"`
// updated at
UpdatedAt int64 `json:"updated_at,omitempty"`
UpdatedAt int64 `json:"updatedAt,omitempty"`
// url template
URLTemplate string `json:"url_template,omitempty"`
URLTemplate string `json:"urlTemplate,omitempty"`
// z Id
ZID string `json:"zId,omitempty"`