forked from go-swagger/go-swagger
-
Notifications
You must be signed in to change notification settings - Fork 2
/
api.go
82 lines (74 loc) · 1.62 KB
/
api.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// Package booking API.
//
// the purpose of this application is to provide an application
// that is using plain go code to define an API
//
//
// Schemes: https
// Host: localhost
// Version: 0.0.1
//
// Consumes:
// - application/json
//
// Produces:
// - application/json
//
//
// swagger:meta
package spec
import (
"net/http"
"github.com/go-swagger/scan-repo-boundary/makeplans"
)
// Customer of the site.
//
// swagger:model Customer
type Customer struct {
Name string `json:"name"`
}
// IgnoreMe should not be added to definitions since it is not annotated.
type IgnoreMe struct {
Name string `json:"name"`
}
// DateRange represents a scheduled appointments time
// DateRange should be in definitions since it's being used in a response
type DateRange struct {
Start string `json:"start"`
End string `json:"end"`
}
// BookingResponse represents a scheduled appointment
//
// swagger:response BookingResponse
type BookingResponse struct {
// Booking struct
//
// in: body
// required: true
Body struct {
Booking makeplans.Booking `json:"booking"`
Customer Customer `json:"customer"`
Dates DateRange `json:"dates"`
// example: {"key": "value"}
Map map[string]string `json:"map"`
// example: [1, 2]
Slice []int `json:"slice"`
}
}
// Bookings swagger:route GET /admin/bookings/ booking Bookings
//
// Bookings lists all the appointments that have been made on the site.
//
//
// Consumes:
// application/json
//
// Schemes: http, https
//
// Produces:
// application/json
//
// Responses:
// 200: BookingResponse
func bookings(w http.ResponseWriter, r *http.Request) {
}