uplink/app/storage/embedded/configurator.go

18 lines
222 B
Go
Raw Normal View History

2018-04-10 11:48:51 +00:00
package embedded
import (
"github.com/boltdb/bolt"
)
type Configurator struct {
database *bolt.DB
}
func (configurator *Configurator) CreateChannel(uuid string) {
}
func (configurator *Configurator) Channels() {
}