Skip to content

Commit cda806d

Browse files
committed
Fix example imports
1 parent 0e56555 commit cda806d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/cookie.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ package main
22

33
import (
44
"fmt"
5+
"github.com/hoisie/web"
56
"html"
6-
"web"
77
)
88

99
var cookieName = "cookie"

examples/multiserver.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package main
22

33
import (
4-
"github.com/hoisie/web.go"
4+
"github.com/hoisie/web"
55
)
66

77
func hello1(val string) string { return "hello1 " + val }

examples/tls.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package main
22

33
import (
44
"crypto/tls"
5-
"web"
5+
"github.com/hoisie/web"
66
)
77

88
// an arbitrary self-signed certificate, generated with

0 commit comments

Comments
 (0)