ricochet-go/core/config.go

13 lines
159 B
Go
Raw Normal View History

2016-07-01 03:18:55 +00:00
package core
import (
"errors"
)
type Config struct {
}
func LoadConfig(configPath string) (*Config, error) {
return nil, errors.New("Not implemented")
}