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

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

16
 	Hobbies []string
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
 func Inicial(w http.ResponseWriter, r *http.Request) {
29
 func Inicial(w http.ResponseWriter, r *http.Request) {
21
 	fmt.Println(r.Context().Value("parameters"))
30
 	fmt.Println(r.Context().Value("parameters"))
22
 
31