Files
query-orchestration/internal/text_extraction/service_test.go
T
Michael McGuinness b16ff55afa Merged in feature/document (pull request #36)
Document CRUD

* doccreate

* dochashlocandget

* depsandtodo
2025-01-24 16:12:25 +00:00

14 lines
237 B
Go

package textextraction_test
import (
documentclean "queryorchestration/internal/document/clean"
"testing"
"github.com/stretchr/testify/assert"
)
func TestService(t *testing.T) {
svc := documentclean.New()
assert.NotNil(t, svc)
}