diff options
author | Carl Baldwin <carl@ecbaldwin.net> | 2019-07-24 09:02:18 -0600 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@gmail.com> | 2019-08-28 09:06:20 +0900 |
commit | 8900db7551a01d3dba019445b08357ffe0cc3bed (patch) | |
tree | e8e50be5aedff0bbe7989fb25a2fd523a7607f1a /pkg | |
parent | ed1aef36e72157ae981671baaa2fd54fdbeea7f2 (diff) |
Switch away from channel for one-off dry run
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/config/config.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/config/config.go b/pkg/config/config.go index 4a4394df..b369760b 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -13,6 +13,10 @@ import ( "github.com/osrg/gobgp/pkg/server" ) +func ReadConfigFile(configFile, configType string) (*config.BgpConfigSet, error) { + return config.ReadConfigfile(configFile, configType) +} + func marshalRouteTargets(l []string) ([]*any.Any, error) { rtList := make([]*any.Any, 0, len(l)) for _, rtString := range l { |