Files
yoloyolo/config/config.go
T

10 lines
268 B
Go
Raw Normal View History

package config
import "github.com/netsynth/netsynth/classify"
import "github.com/netsynth/netsynth/synth"
// Load is a stub — implementation pending GREEN phase.
func Load(configPath string) (map[classify.TrafficClass]synth.FreqConfig, error) {
return nil, nil
}