1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-07 01:09:45 +02:00
Files
lazygit/pkg/commands/oscommands/dummies.go
2022-01-04 09:07:15 +11:00

11 lines
226 B
Go

package oscommands
import (
"github.com/jesseduffield/lazygit/pkg/utils"
)
// NewDummyOSCommand creates a new dummy OSCommand for testing
func NewDummyOSCommand() *OSCommand {
return NewOSCommand(utils.NewDummyCommon())
}