mirror of
https://github.com/teivah/100-go-mistakes.git
synced 2026-06-20 16:45:56 +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"
|
"net/http"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
_ = listing1()
|
||||||
|
_ = listing2()
|
||||||
|
_ = listing3()
|
||||||
|
_ = listing4()
|
||||||
|
}
|
||||||
|
|
||||||
func listing1() error {
|
func listing1() error {
|
||||||
var client *http.Client
|
var client *http.Client
|
||||||
if tracing {
|
if tracing {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue