Skip to content

Commit 44db6ca

Browse files
authored
Merge pull request #4 from tridentsx/access
make PorcessSchema accessible
2 parents 3575040 + b231474 commit 44db6ca

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ func main() {
3333
}
3434

3535
// Process the schema file
36-
processSchema(*schemaFile, *outDir, *skipFlatten, *skipRemote, *maxDepth, *packageName)
36+
ProcessSchema(*schemaFile, *outDir, *skipFlatten, *skipRemote, *maxDepth, *packageName)
3737
}
3838

3939
// processSchema handles schema file conversion (either OpenAPI or JSON Schema)
40-
func processSchema(schemaFile, outDir string, skipFlatten, skipRemote bool, maxDepth int, packageName string) {
40+
func ProcessSchema(schemaFile, outDir string, skipFlatten, skipRemote bool, maxDepth int, packageName string) {
4141
log.Printf("Processing schema from %s", schemaFile)
4242

4343
// Read the schema file

0 commit comments

Comments
 (0)