Add template support.

This commit is contained in:
2024-08-26 23:12:33 +02:00
parent 30f8be3d5d
commit e87dfaf38b
11 changed files with 707 additions and 381 deletions

16
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch Package",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}",
"args": ["generate"]
}
]
}