Matheus Querido 6 years ago
parent
commit
1a1d8fa233
3 changed files with 15 additions and 6 deletions
  1. BIN
      build
  2. 5 5
      main.go
  3. 10 1
      src/controller/Test/Test.go

BIN
build


+ 5 - 5
main.go

@@ -7,8 +7,8 @@ import (
7 7
 
8 8
 	"./core/database"
9 9
 	"./core/errorHandler"
10
-	req "./core/request"
11
-	res "./core/response"
10
+	"./core/request"
11
+	"./core/response"
12 12
 	"./src/lib/auth"
13 13
 )
14 14
 
@@ -20,12 +20,12 @@ func main() {
20 20
 	http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
21 21
 		var Errors errorHandler.Errors
22 22
 
23
-		res.SetResponseWriter(w)
24
-		req.SetRequest(r)
23
+		response.SetResponseWriter(w)
24
+		request.SetRequest(r)
25 25
 
26 26
 		if !database.IsConnected {
27 27
 			Errors.InternalError("Conexão com a base de dados falhou!")
28
-			res.JSON(Errors)
28
+			response.JSON(Errors)
29 29
 			return
30 30
 		}
31 31
 

+ 10 - 1
src/controller/Test/Test.go

@@ -16,7 +16,16 @@ type Profile struct {
16 16
 	Hobbies []string
17 17
 }
18 18
 
19
-//Inicial : Func
19
+/**
20
+ * @api {get} /user/:id Request User information
21
+ * @apiName GetUser
22
+ * @apiGroup User
23
+ *
24
+ * @apiParam {Number} id Users unique ID.
25
+ *
26
+ * @apiSuccess {String} firstname Firstname of the User.
27
+ * @apiSuccess {String} lastname  Lastname of the User.
28
+ */
20 29
 func Inicial(w http.ResponseWriter, r *http.Request) {
21 30
 	fmt.Println(r.Context().Value("parameters"))
22 31