mirror of
https://github.com/foomo/gotsrpc.git
synced 2025-10-16 12:35:35 +00:00
12 lines
149 B
Go
12 lines
149 B
Go
package nested
|
|
|
|
type Nested struct {
|
|
Name string
|
|
SuperNestedString struct {
|
|
Ha int64
|
|
}
|
|
SuperNestedPtr *struct {
|
|
Bla string
|
|
}
|
|
}
|