app.go
author Ollivier Robert <roberto@keltia.net>
Thu, 06 Apr 2017 23:37:58 +0200
changeset 27 15abafa6cd90
parent 21 555716349f64
child 35 27c58d359940
permissions -rw-r--r--
Will be filled in later.

package gondole

import (

)

// NewApp registers a new instance
func NewApp(name, redirectURI string) (g *Gondole, err error) {
	// Load configuration, will register if none is found

	g = &Gondole{
		Name:   name,
		//ID:     config.ID,
		//Secret: config.BearerToken,
	}
	return
}