mirror of
https://github.com/teivah/100-go-mistakes.git
synced 2026-06-21 00:47:11 +08:00
Missing main.
This commit is contained in:
parent
4d041dc26c
commit
d21c8462b1
1 changed files with 7 additions and 0 deletions
|
|
@ -5,6 +5,13 @@ import (
|
|||
"net/http"
|
||||
)
|
||||
|
||||
func main() {
|
||||
_ = listing1()
|
||||
_ = listing2()
|
||||
_ = listing3()
|
||||
_ = listing4()
|
||||
}
|
||||
|
||||
func listing1() error {
|
||||
var client *http.Client
|
||||
if tracing {
|
||||
|
|
|
|||
Loading…
Reference in a new issue