19 lines
160 B
Go
19 lines
160 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
)
|
|
|
|
type Fromage struct {
|
|
*http.Server
|
|
}
|
|
|
|
func main() {
|
|
a := Fromage{}
|
|
fmt.Println(a.Server)
|
|
}
|
|
|
|
// Output:
|
|
// <nil>
|