github.com/yandex/pandora@v0.5.32/components/guns/import.go (about) 1 package guns 2 3 import ( 4 "github.com/spf13/afero" 5 "github.com/yandex/pandora/components/guns/dummy" 6 "github.com/yandex/pandora/core/register" 7 ) 8 9 func Import(fs afero.Fs) { 10 register.Gun("dummy", dummy.NewGun, dummy.DefaultGunConfig) 11 }