Skip to content

Commit 6d50f40

Browse files
committed
version - 0.0.1-alpha.1
1 parent 279a115 commit 6d50f40

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

api.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ package rest
88
import (
99
"errors"
1010
"fmt"
11-
"github.com/go-rs/rest-api-framework/utils"
1211
"net/http"
1312
"regexp"
13+
14+
"github.com/go-rs/rest-api-framework/utils"
1415
)
1516

1617
type Handler func(ctx *Context)

context.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
package rest
77

88
import (
9-
"github.com/go-rs/rest-api-framework/render"
109
"net/http"
10+
11+
"github.com/go-rs/rest-api-framework/render"
1112
)
1213

1314
/**

examples/server.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
package main
22

33
import (
4-
"github.com/go-rs/rest-api-framework"
54
"errors"
65
"fmt"
7-
"github.com/go-rs/rest-api-framework/examples/user"
86
"net/http"
7+
8+
"github.com/go-rs/rest-api-framework"
9+
"github.com/go-rs/rest-api-framework/examples/user"
910
)
1011

1112
func main() {

0 commit comments

Comments
 (0)