refactor: move uixt pkg

This commit is contained in:
lilong.129
2025-03-05 11:04:02 +08:00
parent 9e064ee0ad
commit e107389d6e
122 changed files with 146 additions and 142 deletions
+19
View File
@@ -0,0 +1,19 @@
package convert
import (
_ "embed"
"os"
"github.com/rs/zerolog/log"
)
func convert2GoTestScripts(paths ...string) error {
log.Warn().Msg("convert to gotest scripts is not supported yet")
os.Exit(1)
// format pytest scripts with black
return nil
}
//go:embed testcase.tmpl
var testcaseTemplate string