23 lines
323 B
Go
23 lines
323 B
Go
package fill
|
|
|
|
type Server struct {
|
|
Name string
|
|
ID int
|
|
MyHomeAddress string
|
|
SubDomains []string
|
|
Empty string
|
|
Example int64
|
|
Example2 string
|
|
Bar struct {
|
|
Four string
|
|
Five string
|
|
}
|
|
Lala interface{}
|
|
} // eos
|
|
// eof
|
|
|
|
func fillServer() {
|
|
sv := Server{}
|
|
_ = sv
|
|
}
|