Go to file
Pavel Merzlyakov 6bc05545b1 removing @optional support 2023-07-26 17:47:56 +03:00
src Removing @optional support 2023-07-26 13:09:51 +03:00
tpl removing @optional support 2023-07-26 17:47:56 +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 Experimenting with composer deps 2022-12-14 16:37: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()
    ]
  )
);