100-go-mistakes/2-code-project-organization/11-functional-options/config-struct/main.go
2021-12-27 15:56:17 +01:00

12 lines
143 B
Go

package main
type Config struct {
Port int
}
func NewServer(addr string, cfg Config) {
}
func main() {
NewServer("localhost", Config{})
}