Skip to content

Commit

Permalink
version - 0.0.1-alpha.1
Browse files Browse the repository at this point in the history
  • Loading branch information
roshangade committed Apr 14, 2019
1 parent 279a115 commit 6d50f40
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion api.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ package rest
import (
"errors"
"fmt"
"github.com/go-rs/rest-api-framework/utils"
"net/http"
"regexp"

"github.com/go-rs/rest-api-framework/utils"
)

type Handler func(ctx *Context)
Expand Down
3 changes: 2 additions & 1 deletion context.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
package rest

import (
"github.com/go-rs/rest-api-framework/render"
"net/http"

"github.com/go-rs/rest-api-framework/render"
)

/**
Expand Down
5 changes: 3 additions & 2 deletions examples/server.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
package main

import (
"github.com/go-rs/rest-api-framework"
"errors"
"fmt"
"github.com/go-rs/rest-api-framework/examples/user"
"net/http"

"github.com/go-rs/rest-api-framework"
"github.com/go-rs/rest-api-framework/examples/user"
)

func main() {
Expand Down

0 comments on commit 6d50f40

Please sign in to comment.