|
|
|
|
|
by llmblockchain
845 days ago
|
|
Yes. Your DSL is JSON in this case, {
"enums": [
{
"package": "cmd",
"type": "operation",
"values": [
"Escalated",
"Archived",
"Deleted",
"Completed"
]
}
]
} My point was the "Go" way to do this isn't parsing a custom format (like your JSON), but it's to use go generate. |
|