ricochet-go/core/config.go

13 lines
159 B
Go

package core
import (
"errors"
)
type Config struct {
}
func LoadConfig(configPath string) (*Config, error) {
return nil, errors.New("Not implemented")
}