Files
query-orchestration/internal/text_extraction/service_test.go
T
Michael McGuinness 5b7160fe44 Merged in fature/jobs (pull request #34)
Job Collector

* createstructure

* mostupdatevalidation

* repocollectorupdate

* updateoutline

* updatevalidation

* scriptupdate

* cleanupdockerignore

* update

* collectorupdateapi
2025-01-23 14:56:20 +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)
}