Go to file
Sergey Polygalin 28f2a161bd Change player id to uint64 2023-09-21 14:16:50 +03:00
src partial table_json_kv support 2023-09-08 17:08:46 +03:00
tpl Change player id to uint64 2023-09-21 14:16:50 +03:00
.gitignore Adding README 2022-12-08 19:02:33 +03:00
README.md Adding README 2022-12-08 19:02:33 +03:00
composer.json Bumping deps 2023-08-16 14:38:21 +03:00

README.md

This package is used for code generation of Go meta structs using Twig templates

Usage example:

$twig = \metagen_go\get_twig();
file_put_contents('bundle.go', 
  $twig->render("codegen_bundle.twig", 
    [
     'package' => 'autogen',
     'meta' => get_meta()
    ]
  )
);