Skip to content

Commit

Permalink
model: network: Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ish-hcc committed Mar 5, 2024
1 parent 6c59e19 commit 6092ac7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pkg/api/rest/model/network/csp.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package network
// Subnet TODO
type Subnet struct {
Name string `json:"name"`
IPv4CIDR string `json:"IPv4CIDR"` // IPv4 Network Address with CIDR Prefix Length
IPv6CIDR string `json:"IPv6CIDR"` // IPv6 Network Address with CIDR Prefix Length
IPv4CIDR string `json:"ipv4_cidr"` // IPv4 Network Address with CIDR Prefix Length
IPv6CIDR string `json:"ipv6_cidr"` // IPv6 Network Address with CIDR Prefix Length
}

// VPC TODO
Expand Down
2 changes: 1 addition & 1 deletion pkg/api/rest/model/network/network.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ type Host struct {

type Network struct {
Host Host `json:"host"`
CSP CSP `json:"CSP"`
CSP CSP `json:"csp"`
}

0 comments on commit 6092ac7

Please sign in to comment.