comparison pkg/controllers/printtemplates.go @ 2148:4057a1f15174

Print templates: Forget to add controller file.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Fri, 08 Feb 2019 11:03:12 +0100
parents
children 2c67c51d57ad
comparison
equal deleted inserted replaced
2147:b66cfcde8ff7 2148:4057a1f15174
1 // This is Free Software under GNU Affero General Public License v >= 3.0
2 // without warranty, see README.md and license for details.
3 //
4 // SPDX-License-Identifier: AGPL-3.0-or-later
5 // License-Filename: LICENSES/AGPL-3.0.txt
6 //
7 // Copyright (C) 2018 by via donau
8 // – Österreichische Wasserstraßen-Gesellschaft mbH
9 // Software engineering by Intevation GmbH
10 //
11 // Author(s):
12 // * Sascha L. Teichmann <sascha.teichmann@intevation.de>
13
14 package controllers
15
16 import (
17 "database/sql"
18 "net/http"
19 )
20
21 func listPrintTemplates(
22 _ interface{},
23 req *http.Request,
24 conn *sql.Conn,
25 ) (jr JSONResult, err error) {
26 // TODO: Implement me!
27 return
28 }
29
30 func fetchPrintTemplate(
31 _ interface{},
32 req *http.Request,
33 conn *sql.Conn,
34 ) (jr JSONResult, err error) {
35 // TODO: Implement me!
36 return
37 }
38
39 func createPrintTemplate(
40 _ interface{},
41 req *http.Request,
42 conn *sql.Conn,
43 ) (jr JSONResult, err error) {
44 // TODO: Implement me!
45 return
46 }
47
48 func deletePrintTemplate(
49 _ interface{},
50 req *http.Request,
51 conn *sql.Conn,
52 ) (jr JSONResult, err error) {
53 // TODO: Implement me!
54 return
55 }
56
57 func updatePrintTemplate(
58 _ interface{},
59 req *http.Request,
60 conn *sql.Conn,
61 ) (jr JSONResult, err error) {
62 // TODO: Implement me!
63 return
64 }