madon.go
changeset 238 1c0042e76902
parent 237 16c27106d83c
child 259 f807b8fb46c6
equal deleted inserted replaced
237:16c27106d83c 238:1c0042e76902
    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 = "2.4.0-dev"
    26 	MadonVersion = "2.4.0-dev"
    27 
    27 
    28 	// API version implemented in this library
    28 	currentAPIPath = "/api"
    29 	apiVersion     = "v1"
       
    30 	currentAPIPath = "/api/" + apiVersion
       
    31 
    29 
    32 	// NoRedirect is the URI for no redirection in the App registration
    30 	// NoRedirect is the URI for no redirection in the App registration
    33 	NoRedirect = "urn:ietf:wg:oauth:2.0:oob"
    31 	NoRedirect = "urn:ietf:wg:oauth:2.0:oob"
    34 )
    32 )
    35 
    33