19 lines
328 B
Go
19 lines
328 B
Go
// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
|
|
|
|
package resource
|
|
|
|
import (
|
|
_ "fmt"
|
|
_ "github.com/stretchr/testify/assert"
|
|
_ "os"
|
|
_ "strings"
|
|
_ "testing"
|
|
"decl/internal/command"
|
|
)
|
|
|
|
type MockCommand command.Command
|
|
|
|
func (m *MockCommand) Execute(value any) ([]byte, error) {
|
|
return nil, nil
|
|
}
|