18 lines
222 B
Go
18 lines
222 B
Go
|
package embedded
|
||
|
|
||
|
import (
|
||
|
"github.com/boltdb/bolt"
|
||
|
)
|
||
|
|
||
|
type Configurator struct {
|
||
|
database *bolt.DB
|
||
|
}
|
||
|
|
||
|
func (configurator *Configurator) CreateChannel(uuid string) {
|
||
|
|
||
|
}
|
||
|
|
||
|
func (configurator *Configurator) Channels() {
|
||
|
|
||
|
}
|