File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,7 @@ import (
1212 "github.com/noriah/catnip/input"
1313 "github.com/noriah/catnip/processor"
1414
15- _ "github.com/noriah/catnip/input/ffmpeg"
16- _ "github.com/noriah/catnip/input/parec"
15+ _ "github.com/noriah/catnip/input/all"
1716
1817 "github.com/integrii/flaggy"
1918 "github.com/pkg/errors"
Original file line number Diff line number Diff line change 1+ // Package all imports all backends implemented by the input package.
2+ package all
3+
4+ import (
5+ _ "github.com/noriah/catnip/input/ffmpeg"
6+ _ "github.com/noriah/catnip/input/parec"
7+ )
Original file line number Diff line number Diff line change 11//go:build cgo && withportaudio
22
3- package main
3+ package all
44
55import _ "github.com/noriah/catnip/input/portaudio"
You can’t perform that action at this time.
0 commit comments