|
// Package main provides the CLI entry point for KRA code generation tool.
|
|
// This tool supports generating Kratos DDD architecture backend code and React frontend code.
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
if err := rootCmd.Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|