madon.go
changeset 157 6e9d927d5e32
parent 156 70aadba26338
child 158 083d33bb419b
equal deleted inserted replaced
156:70aadba26338 157:6e9d927d5e32
    21 // apiCallParams is a map with the parameters for an API call
    21 // apiCallParams is a map with the parameters for an API call
    22 type apiCallParams map[string]string
    22 type apiCallParams map[string]string
    23 
    23 
    24 const (
    24 const (
    25 	// MadonVersion contains the version of the Madon library
    25 	// MadonVersion contains the version of the Madon library
    26 	MadonVersion = "1.2.0-dev"
    26 	MadonVersion = "1.2.0"
    27 
    27 
    28 	// API version implemented in this library
    28 	// API version implemented in this library
    29 	apiVersion     = "v1"
    29 	apiVersion     = "v1"
    30 	currentAPIPath = "/api/" + apiVersion
    30 	currentAPIPath = "/api/" + apiVersion
    31 
    31