I built a small CLI tool that converts JSON into Go structs automatically.
Features:
Supports nested objects
Supports arrays
Generates struct fields with json tags
Simple and fast CLI usage
Example:
structify-go input.json
Output:
type User struct {
Name string json:"name"
Age int json:"age"
}
Looking for feedback, suggestions, or feature ideas 🙏
GitHub:
Top comments (0)