This commit is contained in:
Bel LaPointe
2025-04-04 12:23:27 -06:00
parent b832cd7743
commit 5a74290409
4 changed files with 37 additions and 0 deletions

14
main_test.go Normal file
View File

@@ -0,0 +1,14 @@
package main_test
import (
"context"
"testing"
main "gitea/show-ingestion"
)
func TestRun(t *testing.T) {
if err := main.Run(context.Background()); err != nil {
t.Fatal(err)
}
}