mirror of
https://github.com/foomo/gotsrpc.git
synced 2025-10-16 12:35:35 +00:00
17 lines
209 B
Go
17 lines
209 B
Go
package nested
|
|
|
|
type Nested struct {
|
|
Name string
|
|
SuperNestedString struct {
|
|
Ha int64
|
|
}
|
|
SuperNestedPtr *struct {
|
|
Bla string
|
|
}
|
|
}
|
|
|
|
type Amount int
|
|
type True bool
|
|
|
|
const ItIsTrue True = true
|