-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathrender.go
53 lines (39 loc) · 988 Bytes
/
render.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
// SPDX-License-Identifier: Apache-2.0
package api
import "net/http"
func (c ChargeStationAuth) Bind(r *http.Request) error {
return nil
}
func (c ChargeStationAuth) Render(w http.ResponseWriter, r *http.Request) error {
return nil
}
func (c ChargeStationSettings) Bind(r *http.Request) error {
return nil
}
func (c ChargeStationInstallCertificates) Bind(r *http.Request) error {
return nil
}
func (c ChargeStationTrigger) Bind(r *http.Request) error {
return nil
}
func (c ChargingProfileType) Bind(r *http.Request) error {
return nil
}
func (t Token) Bind(r *http.Request) error {
return nil
}
func (t Token) Render(w http.ResponseWriter, r *http.Request) error {
return nil
}
func (t Certificate) Bind(r *http.Request) error {
return nil
}
func (t Certificate) Render(w http.ResponseWriter, r *http.Request) error {
return nil
}
func (r Registration) Bind(req *http.Request) error {
return nil
}
func (r Location) Bind(req *http.Request) error {
return nil
}