Files
rest-server/context.go
Chapuis Bertil 465ef4b493 refactoring
2015-08-14 11:17:57 +02:00

18 lines
278 B
Go

package main
import ()
// A Context specifies the root directory where all repositories are stored
type Context struct {
path string
}
func NewContext(path string) Context {
return Context{path}
}
// Creates the file structure of the Context
func (c *Context) Init() {
}