├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── bench.yml │ ├── go.yml │ ├── lint.yml │ └── pages.yml ├── .gitignore ├── .golangci.yml ├── .markdownlint.yaml ├── .typos.toml ├── BENCHMARK.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── Makefile ├── README.md ├── SECURITY.md ├── check-all-modules.sh ├── cmd └── fuego │ ├── commands │ ├── controller.go │ ├── controller_test.go │ └── service.go │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── templates │ ├── embed.go │ └── newEntity │ ├── controller.go │ ├── entity.go │ └── service.go ├── ctx.go ├── ctx_params_test.go ├── ctx_test.go ├── default_middlewares.go ├── default_middlewares_test.go ├── deserialization.go ├── deserialization_test.go ├── doc.go ├── documentation ├── .gitignore ├── .nvmrc ├── README.md ├── babel.config.js ├── docs │ ├── guides │ │ ├── _category_.json │ │ ├── alternative-routers-support │ │ │ ├── _category_.json │ │ │ ├── echo.md │ │ │ └── gin.md │ │ ├── controllers.md │ │ ├── errors.md │ │ ├── middlewares.md │ │ ├── openapi.md │ │ ├── options.md │ │ ├── routing.md │ │ ├── serialization.md │ │ ├── testing.md │ │ ├── transformation.md │ │ └── validation.md │ ├── index.md │ ├── internals │ │ ├── 01-data-flow.mdx │ │ ├── 02-architecture.md │ │ ├── _category_.json │ │ └── architecture.png │ └── tutorials │ │ ├── 01-hello-world.md │ │ ├── 02-crud.md │ │ ├── 03-hot-reload.md │ │ ├── _category_.json │ │ └── rendering │ │ ├── gomponents.md │ │ ├── index.md │ │ ├── std.md │ │ └── templ.md ├── docusaurus.config.ts ├── package-lock.json ├── package.json ├── sidebars.ts ├── src │ ├── components │ │ ├── FlowChart.js │ │ └── HomepageFeatures │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ ├── css │ │ └── custom.css │ └── pages │ │ ├── index.module.css │ │ ├── index.tsx │ │ └── markdown-page.md ├── static │ ├── .nojekyll │ └── img │ │ ├── docusaurus-social-card.jpg │ │ ├── fuego-big.png │ │ ├── fuego.ico │ │ ├── fuego.png │ │ ├── fuego.svg │ │ ├── hello-world-openapi.jpeg │ │ └── logo.svg └── tsconfig.json ├── engine.go ├── engine_test.go ├── errors.go ├── errors_test.go ├── examples ├── acme-tls │ ├── go.mod │ ├── go.sum │ └── main.go ├── basic │ ├── go.mod │ ├── go.sum │ └── main.go ├── crud-gorm │ ├── .gitignore │ ├── go.mod │ ├── go.sum │ ├── handlers │ │ └── handler.go │ ├── main.go │ ├── mocks │ │ └── mock_userqueries.go │ ├── models │ │ └── user.go │ └── queries │ │ └── query.go ├── custom-errors │ ├── go.mod │ ├── go.sum │ └── main.go ├── custom-serializer │ ├── go.mod │ ├── go.sum │ └── main.go ├── echo-compat │ ├── go.mod │ ├── go.sum │ ├── handlers.go │ ├── main.go │ ├── main_test.go │ └── test.go ├── full-app-gourmet │ ├── .air.toml │ ├── .env │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc │ ├── Dockerfile │ ├── Makefile │ ├── controller │ │ ├── dosing.go │ │ ├── dummy_controllers.go │ │ ├── id.go │ │ ├── ingredient.go │ │ ├── recipe.go │ │ ├── routes.go │ │ └── users.go │ ├── errors_custom.go │ ├── favicon.ico │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── operations │ │ ├── .gitignore │ │ ├── backup.sh │ │ ├── deploy.sh │ │ ├── gourmet.service │ │ ├── logs.sh │ │ └── upload-db.sh │ ├── package.json │ ├── server │ │ └── server.go │ ├── sqlc.yml │ ├── static │ │ ├── .gitignore │ │ ├── dinner-placeholder.webp │ │ ├── embed.go │ │ ├── embed_test.go │ │ ├── favicon.ico │ │ ├── hero.webp │ │ ├── lobster.svg │ │ ├── manifest.json │ │ ├── plan.webp │ │ └── robots.txt │ ├── store │ │ ├── db.go │ │ ├── dosing.go │ │ ├── dosing.sql.go │ │ ├── ingredient.go │ │ ├── ingredient.sql.go │ │ ├── init.go │ │ ├── migrations │ │ │ ├── 000001_migration.down.sql │ │ │ ├── 000001_migration.up.sql │ │ │ ├── 000002_ingredient_default_dosing.down.sql │ │ │ ├── 000002_ingredient_default_dosing.up.sql │ │ │ ├── 000003_ingredient_categories.down.sql │ │ │ ├── 000003_ingredient_categories.up.sql │ │ │ ├── 000004_recipes_categories.down.sql │ │ │ ├── 000004_recipes_categories.up.sql │ │ │ ├── 000005_whenToEat.down.sql │ │ │ ├── 000005_whenToEat.up.sql │ │ │ └── embed.go │ │ ├── models.go │ │ ├── queries │ │ │ ├── dosing.sql │ │ │ ├── ingredient.sql │ │ │ └── recipe.sql │ │ ├── recipe.go │ │ ├── recipe.sql.go │ │ ├── slug.go │ │ ├── slug_test.go │ │ └── types │ │ │ ├── category.go │ │ │ ├── translations.go │ │ │ ├── unit.go │ │ │ └── whenToEat.go │ ├── tailwind.config.js │ ├── tailwind.css │ ├── templa │ │ ├── admin │ │ │ ├── ingredient.form.templ │ │ │ ├── ingredient.form_templ.go │ │ │ ├── ingredient.list.templ │ │ │ ├── ingredient.list_templ.go │ │ │ ├── ingredient.new.templ │ │ │ ├── ingredient.new_templ.go │ │ │ ├── ingredient.page.templ │ │ │ ├── ingredient.page_templ.go │ │ │ ├── layout.templ │ │ │ ├── layout_templ.go │ │ │ ├── navbar.admin.templ │ │ │ ├── navbar.admin_templ.go │ │ │ ├── recipe.form.templ │ │ │ ├── recipe.form_templ.go │ │ │ ├── recipe.list.templ │ │ │ ├── recipe.list_templ.go │ │ │ ├── recipe.new.templ │ │ │ ├── recipe.new_templ.go │ │ │ ├── recipe.page.templ │ │ │ └── recipe.page_templ.go │ │ ├── components │ │ │ ├── card.templ │ │ │ ├── card_templ.go │ │ │ ├── footer.templ │ │ │ ├── footer_templ.go │ │ │ ├── head.templ │ │ │ ├── head_templ.go │ │ │ ├── scripts.templ │ │ │ ├── scripts_templ.go │ │ │ ├── searchForm.templ │ │ │ ├── searchForm_templ.go │ │ │ ├── select.category.ingredient.templ │ │ │ ├── select.category.ingredient_templ.go │ │ │ ├── select.templ │ │ │ ├── select_templ.go │ │ │ ├── slider.templ │ │ │ ├── slider_templ.go │ │ │ ├── stars.templ │ │ │ ├── stars_templ.go │ │ │ ├── unitSelector.templ │ │ │ └── unitSelector_templ.go │ │ ├── generate.go │ │ ├── home.templ │ │ ├── home_templ.go │ │ ├── ingredient.list.templ │ │ ├── ingredient.list_templ.go │ │ ├── layout.templ │ │ ├── layout_templ.go │ │ ├── logo.templ │ │ ├── logo_templ.go │ │ ├── navbar.templ │ │ ├── navbar_templ.go │ │ ├── planner.templ │ │ ├── planner_templ.go │ │ ├── recipe.list.templ │ │ ├── recipe.list_templ.go │ │ ├── recipe.page.templ │ │ ├── recipe.page_templ.go │ │ ├── search.page.templ │ │ ├── search.page_templ.go │ │ ├── search.templ │ │ └── search_templ.go │ ├── templates │ │ ├── embed.go │ │ ├── layouts │ │ │ ├── admin.layout.html │ │ │ └── main.layout.html │ │ ├── pages │ │ │ ├── admin.page.html │ │ │ ├── admin │ │ │ │ ├── ingredients.page.html │ │ │ │ ├── recipes.page.html │ │ │ │ └── single-recipe.page.html │ │ │ ├── index.page.html │ │ │ ├── ingredients.page.html │ │ │ ├── recipe.page.html │ │ │ ├── recipes.page.html │ │ │ └── search.page.html │ │ └── partials │ │ │ ├── dosing │ │ │ └── preselected-unit.partial.html │ │ │ ├── footer.partial.html │ │ │ ├── head.partial.html │ │ │ ├── htmx │ │ │ └── htmx.partial.html │ │ │ ├── ingredients │ │ │ ├── add-ingredient.partial.admin.html │ │ │ ├── ingredient-card.partial.html │ │ │ ├── ingredient-slider.partial.html │ │ │ └── ingredients-list.partial.html │ │ │ ├── navbar.partial.html │ │ │ ├── recipes │ │ │ ├── add-recipe.partial.admin.html │ │ │ ├── recipe-card.partial.html │ │ │ ├── recipe-line.partial.html │ │ │ ├── recipe-slider.partial.html │ │ │ ├── recipes-grid.partial.html │ │ │ └── recipes-list.partial.html │ │ │ ├── scripts.partial.html │ │ │ └── search-result.partial.html │ ├── views │ │ ├── admin.go │ │ ├── admin.ingredient.go │ │ ├── admin.recipe.go │ │ ├── dosing.go │ │ ├── ingredients.go │ │ ├── partials.go │ │ ├── planner.go │ │ ├── recipe.go │ │ ├── recipe_test.go │ │ └── views.go │ └── yarn.lock ├── generate-opengraph-image │ ├── Raleway-Regular.ttf │ ├── controller │ │ └── opengraph.go │ ├── go.mod │ ├── go.sum │ └── main.go ├── gin-compat │ ├── adaptor_test.go │ ├── go.mod │ ├── go.sum │ ├── handlers.go │ ├── main.go │ └── main_test.go ├── hello-world │ ├── go.mod │ ├── go.sum │ └── main.go ├── openapi-generate │ ├── cmd │ │ └── main.go │ ├── go.mod │ ├── go.sum │ ├── scripts │ │ └── genspec.go │ ├── server │ │ └── server.go │ └── tools.go ├── openapi │ ├── go.mod │ ├── go.sum │ └── main.go ├── petstore │ ├── controllers │ │ ├── middlewares.go │ │ ├── pets.go │ │ └── pets_test.go │ ├── go.mod │ ├── go.sum │ ├── lib │ │ ├── server.go │ │ ├── server_test.go │ │ └── testdata │ │ │ └── doc │ │ │ └── openapi.golden.json │ ├── main.go │ ├── models │ │ └── Pet.go │ └── services │ │ ├── in_memory_pets.go │ │ └── in_memory_pets_test.go └── with-listener │ ├── go.mod │ ├── go.sum │ └── main.go ├── extra ├── fuegoecho │ ├── adaptor.go │ ├── adaptor_test.go │ ├── context.go │ ├── go.mod │ └── go.sum ├── fuegogin │ ├── adaptor.go │ ├── adaptor_test.go │ ├── adaptor_wrapped_router_test.go │ ├── context.go │ ├── go.mod │ └── go.sum ├── markdown │ ├── go.mod │ ├── go.sum │ ├── markdown.go │ └── markdown_test.go ├── sql │ ├── go.mod │ ├── go.sum │ ├── sql_errors.go │ └── sql_errors_test.go └── sqlite3 │ ├── go.mod │ ├── go.sum │ ├── sqlite_errors.go │ └── sqlite_errors_test.go ├── generic_mux.go ├── generics_test.go ├── go.mod ├── go.sum ├── go.work ├── html.go ├── html_test.go ├── internal └── common_context.go ├── mdsf.json ├── middleware ├── basicauth │ ├── basicauth.go │ ├── basicauth_test.go │ ├── go.mod │ └── go.sum └── cache │ ├── cache.go │ ├── cache_test.go │ ├── go.mod │ ├── go.sum │ ├── in_memory.go │ ├── writer.go │ └── writer_test.go ├── mock_context.go ├── mock_context_test.go ├── multi_return.go ├── multi_return_test.go ├── net_http_mux.go ├── net_http_mux_test.go ├── op-logo.svg ├── openapi.go ├── openapi_description.go ├── openapi_handler.go ├── openapi_handler_test.go ├── openapi_operations.go ├── openapi_operations_test.go ├── openapi_test.go ├── option.go ├── option └── option.go ├── option_test.go ├── param.go ├── param └── param.go ├── param_test.go ├── parameter_registration_test.go ├── params.go ├── params_test.go ├── perf.go ├── perf_test.go ├── route.go ├── schema_customizer.go ├── security.go ├── security_test.go ├── serialization.go ├── serialization_test.go ├── serve.go ├── serve_test.go ├── server.go ├── server_test.go ├── static ├── embed.go └── fuego.svg ├── testdata └── test.html ├── testing-from-outside ├── cors_test.go ├── go.mod └── go.sum ├── tests_test.go ├── validate_params.go ├── validate_params_test.go ├── validation.go └── validation_test.go /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [EwenQuim] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/bench.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/.github/workflows/bench.yml -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/.github/workflows/pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/.markdownlint.yaml -------------------------------------------------------------------------------- /.typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/.typos.toml -------------------------------------------------------------------------------- /BENCHMARK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/BENCHMARK.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/SECURITY.md -------------------------------------------------------------------------------- /check-all-modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/check-all-modules.sh -------------------------------------------------------------------------------- /cmd/fuego/commands/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/cmd/fuego/commands/controller.go -------------------------------------------------------------------------------- /cmd/fuego/commands/controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/cmd/fuego/commands/controller_test.go -------------------------------------------------------------------------------- /cmd/fuego/commands/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/cmd/fuego/commands/service.go -------------------------------------------------------------------------------- /cmd/fuego/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/cmd/fuego/go.mod -------------------------------------------------------------------------------- /cmd/fuego/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/cmd/fuego/go.sum -------------------------------------------------------------------------------- /cmd/fuego/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/cmd/fuego/main.go -------------------------------------------------------------------------------- /cmd/fuego/templates/embed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/cmd/fuego/templates/embed.go -------------------------------------------------------------------------------- /cmd/fuego/templates/newEntity/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/cmd/fuego/templates/newEntity/controller.go -------------------------------------------------------------------------------- /cmd/fuego/templates/newEntity/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/cmd/fuego/templates/newEntity/entity.go -------------------------------------------------------------------------------- /cmd/fuego/templates/newEntity/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/cmd/fuego/templates/newEntity/service.go -------------------------------------------------------------------------------- /ctx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/ctx.go -------------------------------------------------------------------------------- /ctx_params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/ctx_params_test.go -------------------------------------------------------------------------------- /ctx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/ctx_test.go -------------------------------------------------------------------------------- /default_middlewares.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/default_middlewares.go -------------------------------------------------------------------------------- /default_middlewares_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/default_middlewares_test.go -------------------------------------------------------------------------------- /deserialization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/deserialization.go -------------------------------------------------------------------------------- /deserialization_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/deserialization_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/doc.go -------------------------------------------------------------------------------- /documentation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/.gitignore -------------------------------------------------------------------------------- /documentation/.nvmrc: -------------------------------------------------------------------------------- 1 | v20.9.0 2 | -------------------------------------------------------------------------------- /documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/README.md -------------------------------------------------------------------------------- /documentation/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/babel.config.js -------------------------------------------------------------------------------- /documentation/docs/guides/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docs/guides/_category_.json -------------------------------------------------------------------------------- /documentation/docs/guides/alternative-routers-support/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docs/guides/alternative-routers-support/_category_.json -------------------------------------------------------------------------------- /documentation/docs/guides/alternative-routers-support/echo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docs/guides/alternative-routers-support/echo.md -------------------------------------------------------------------------------- /documentation/docs/guides/alternative-routers-support/gin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docs/guides/alternative-routers-support/gin.md -------------------------------------------------------------------------------- /documentation/docs/guides/controllers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docs/guides/controllers.md -------------------------------------------------------------------------------- /documentation/docs/guides/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docs/guides/errors.md -------------------------------------------------------------------------------- /documentation/docs/guides/middlewares.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docs/guides/middlewares.md -------------------------------------------------------------------------------- /documentation/docs/guides/openapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docs/guides/openapi.md -------------------------------------------------------------------------------- /documentation/docs/guides/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docs/guides/options.md -------------------------------------------------------------------------------- /documentation/docs/guides/routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docs/guides/routing.md -------------------------------------------------------------------------------- /documentation/docs/guides/serialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docs/guides/serialization.md -------------------------------------------------------------------------------- /documentation/docs/guides/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docs/guides/testing.md -------------------------------------------------------------------------------- /documentation/docs/guides/transformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docs/guides/transformation.md -------------------------------------------------------------------------------- /documentation/docs/guides/validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docs/guides/validation.md -------------------------------------------------------------------------------- /documentation/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docs/index.md -------------------------------------------------------------------------------- /documentation/docs/internals/01-data-flow.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docs/internals/01-data-flow.mdx -------------------------------------------------------------------------------- /documentation/docs/internals/02-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docs/internals/02-architecture.md -------------------------------------------------------------------------------- /documentation/docs/internals/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docs/internals/_category_.json -------------------------------------------------------------------------------- /documentation/docs/internals/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docs/internals/architecture.png -------------------------------------------------------------------------------- /documentation/docs/tutorials/01-hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docs/tutorials/01-hello-world.md -------------------------------------------------------------------------------- /documentation/docs/tutorials/02-crud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docs/tutorials/02-crud.md -------------------------------------------------------------------------------- /documentation/docs/tutorials/03-hot-reload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docs/tutorials/03-hot-reload.md -------------------------------------------------------------------------------- /documentation/docs/tutorials/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docs/tutorials/_category_.json -------------------------------------------------------------------------------- /documentation/docs/tutorials/rendering/gomponents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docs/tutorials/rendering/gomponents.md -------------------------------------------------------------------------------- /documentation/docs/tutorials/rendering/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docs/tutorials/rendering/index.md -------------------------------------------------------------------------------- /documentation/docs/tutorials/rendering/std.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docs/tutorials/rendering/std.md -------------------------------------------------------------------------------- /documentation/docs/tutorials/rendering/templ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docs/tutorials/rendering/templ.md -------------------------------------------------------------------------------- /documentation/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/docusaurus.config.ts -------------------------------------------------------------------------------- /documentation/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/package-lock.json -------------------------------------------------------------------------------- /documentation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/package.json -------------------------------------------------------------------------------- /documentation/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/sidebars.ts -------------------------------------------------------------------------------- /documentation/src/components/FlowChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/src/components/FlowChart.js -------------------------------------------------------------------------------- /documentation/src/components/HomepageFeatures/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/src/components/HomepageFeatures/index.tsx -------------------------------------------------------------------------------- /documentation/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /documentation/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/src/css/custom.css -------------------------------------------------------------------------------- /documentation/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/src/pages/index.module.css -------------------------------------------------------------------------------- /documentation/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/src/pages/index.tsx -------------------------------------------------------------------------------- /documentation/src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/src/pages/markdown-page.md -------------------------------------------------------------------------------- /documentation/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation/static/img/docusaurus-social-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/static/img/docusaurus-social-card.jpg -------------------------------------------------------------------------------- /documentation/static/img/fuego-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/static/img/fuego-big.png -------------------------------------------------------------------------------- /documentation/static/img/fuego.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/static/img/fuego.ico -------------------------------------------------------------------------------- /documentation/static/img/fuego.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/static/img/fuego.png -------------------------------------------------------------------------------- /documentation/static/img/fuego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/static/img/fuego.svg -------------------------------------------------------------------------------- /documentation/static/img/hello-world-openapi.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/static/img/hello-world-openapi.jpeg -------------------------------------------------------------------------------- /documentation/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/static/img/logo.svg -------------------------------------------------------------------------------- /documentation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/documentation/tsconfig.json -------------------------------------------------------------------------------- /engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/engine.go -------------------------------------------------------------------------------- /engine_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/engine_test.go -------------------------------------------------------------------------------- /errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/errors.go -------------------------------------------------------------------------------- /errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/errors_test.go -------------------------------------------------------------------------------- /examples/acme-tls/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/acme-tls/go.mod -------------------------------------------------------------------------------- /examples/acme-tls/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/acme-tls/go.sum -------------------------------------------------------------------------------- /examples/acme-tls/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/acme-tls/main.go -------------------------------------------------------------------------------- /examples/basic/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/basic/go.mod -------------------------------------------------------------------------------- /examples/basic/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/basic/go.sum -------------------------------------------------------------------------------- /examples/basic/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/basic/main.go -------------------------------------------------------------------------------- /examples/crud-gorm/.gitignore: -------------------------------------------------------------------------------- 1 | tmp/ 2 | doc/ 3 | -------------------------------------------------------------------------------- /examples/crud-gorm/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/crud-gorm/go.mod -------------------------------------------------------------------------------- /examples/crud-gorm/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/crud-gorm/go.sum -------------------------------------------------------------------------------- /examples/crud-gorm/handlers/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/crud-gorm/handlers/handler.go -------------------------------------------------------------------------------- /examples/crud-gorm/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/crud-gorm/main.go -------------------------------------------------------------------------------- /examples/crud-gorm/mocks/mock_userqueries.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/crud-gorm/mocks/mock_userqueries.go -------------------------------------------------------------------------------- /examples/crud-gorm/models/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/crud-gorm/models/user.go -------------------------------------------------------------------------------- /examples/crud-gorm/queries/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/crud-gorm/queries/query.go -------------------------------------------------------------------------------- /examples/custom-errors/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/custom-errors/go.mod -------------------------------------------------------------------------------- /examples/custom-errors/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/custom-errors/go.sum -------------------------------------------------------------------------------- /examples/custom-errors/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/custom-errors/main.go -------------------------------------------------------------------------------- /examples/custom-serializer/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/custom-serializer/go.mod -------------------------------------------------------------------------------- /examples/custom-serializer/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/custom-serializer/go.sum -------------------------------------------------------------------------------- /examples/custom-serializer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/custom-serializer/main.go -------------------------------------------------------------------------------- /examples/echo-compat/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/echo-compat/go.mod -------------------------------------------------------------------------------- /examples/echo-compat/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/echo-compat/go.sum -------------------------------------------------------------------------------- /examples/echo-compat/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/echo-compat/handlers.go -------------------------------------------------------------------------------- /examples/echo-compat/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/echo-compat/main.go -------------------------------------------------------------------------------- /examples/echo-compat/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/echo-compat/main_test.go -------------------------------------------------------------------------------- /examples/echo-compat/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/echo-compat/test.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/.air.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/.air.toml -------------------------------------------------------------------------------- /examples/full-app-gourmet/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/.env -------------------------------------------------------------------------------- /examples/full-app-gourmet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/.gitignore -------------------------------------------------------------------------------- /examples/full-app-gourmet/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/.prettierignore -------------------------------------------------------------------------------- /examples/full-app-gourmet/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/.prettierrc -------------------------------------------------------------------------------- /examples/full-app-gourmet/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/Dockerfile -------------------------------------------------------------------------------- /examples/full-app-gourmet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/Makefile -------------------------------------------------------------------------------- /examples/full-app-gourmet/controller/dosing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/controller/dosing.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/controller/dummy_controllers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/controller/dummy_controllers.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/controller/id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/controller/id.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/controller/ingredient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/controller/ingredient.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/controller/recipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/controller/recipe.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/controller/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/controller/routes.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/controller/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/controller/users.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/errors_custom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/errors_custom.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/favicon.ico -------------------------------------------------------------------------------- /examples/full-app-gourmet/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/go.mod -------------------------------------------------------------------------------- /examples/full-app-gourmet/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/go.sum -------------------------------------------------------------------------------- /examples/full-app-gourmet/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/main.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/operations/.gitignore: -------------------------------------------------------------------------------- 1 | *.db 2 | -------------------------------------------------------------------------------- /examples/full-app-gourmet/operations/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/operations/backup.sh -------------------------------------------------------------------------------- /examples/full-app-gourmet/operations/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/operations/deploy.sh -------------------------------------------------------------------------------- /examples/full-app-gourmet/operations/gourmet.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/operations/gourmet.service -------------------------------------------------------------------------------- /examples/full-app-gourmet/operations/logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/operations/logs.sh -------------------------------------------------------------------------------- /examples/full-app-gourmet/operations/upload-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/operations/upload-db.sh -------------------------------------------------------------------------------- /examples/full-app-gourmet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/package.json -------------------------------------------------------------------------------- /examples/full-app-gourmet/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/server/server.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/sqlc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/sqlc.yml -------------------------------------------------------------------------------- /examples/full-app-gourmet/static/.gitignore: -------------------------------------------------------------------------------- 1 | tailwind.min.css 2 | -------------------------------------------------------------------------------- /examples/full-app-gourmet/static/dinner-placeholder.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/static/dinner-placeholder.webp -------------------------------------------------------------------------------- /examples/full-app-gourmet/static/embed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/static/embed.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/static/embed_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/static/embed_test.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/static/favicon.ico -------------------------------------------------------------------------------- /examples/full-app-gourmet/static/hero.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/static/hero.webp -------------------------------------------------------------------------------- /examples/full-app-gourmet/static/lobster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/static/lobster.svg -------------------------------------------------------------------------------- /examples/full-app-gourmet/static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/static/manifest.json -------------------------------------------------------------------------------- /examples/full-app-gourmet/static/plan.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/static/plan.webp -------------------------------------------------------------------------------- /examples/full-app-gourmet/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/static/robots.txt -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/store/db.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/dosing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/store/dosing.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/dosing.sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/store/dosing.sql.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/ingredient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/store/ingredient.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/ingredient.sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/store/ingredient.sql.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/store/init.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/migrations/000001_migration.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/store/migrations/000001_migration.down.sql -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/migrations/000001_migration.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/store/migrations/000001_migration.up.sql -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/migrations/000002_ingredient_default_dosing.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE ingredient DROP COLUMN default_unit; 2 | -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/migrations/000002_ingredient_default_dosing.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE ingredient ADD COLUMN default_unit text NOT NULL DEFAULT '-'; 2 | -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/migrations/000003_ingredient_categories.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/store/migrations/000003_ingredient_categories.down.sql -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/migrations/000003_ingredient_categories.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/store/migrations/000003_ingredient_categories.up.sql -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/migrations/000004_recipes_categories.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/store/migrations/000004_recipes_categories.down.sql -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/migrations/000004_recipes_categories.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/store/migrations/000004_recipes_categories.up.sql -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/migrations/000005_whenToEat.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/store/migrations/000005_whenToEat.down.sql -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/migrations/000005_whenToEat.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/store/migrations/000005_whenToEat.up.sql -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/migrations/embed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/store/migrations/embed.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/store/models.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/queries/dosing.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/store/queries/dosing.sql -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/queries/ingredient.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/store/queries/ingredient.sql -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/queries/recipe.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/store/queries/recipe.sql -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/recipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/store/recipe.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/recipe.sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/store/recipe.sql.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/slug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/store/slug.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/slug_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/store/slug_test.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/types/category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/store/types/category.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/types/translations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/store/types/translations.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/types/unit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/store/types/unit.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/store/types/whenToEat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/store/types/whenToEat.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/tailwind.config.js -------------------------------------------------------------------------------- /examples/full-app-gourmet/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/tailwind.css -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/admin/ingredient.form.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/admin/ingredient.form.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/admin/ingredient.form_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/admin/ingredient.form_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/admin/ingredient.list.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/admin/ingredient.list.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/admin/ingredient.list_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/admin/ingredient.list_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/admin/ingredient.new.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/admin/ingredient.new.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/admin/ingredient.new_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/admin/ingredient.new_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/admin/ingredient.page.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/admin/ingredient.page.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/admin/ingredient.page_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/admin/ingredient.page_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/admin/layout.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/admin/layout.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/admin/layout_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/admin/layout_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/admin/navbar.admin.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/admin/navbar.admin.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/admin/navbar.admin_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/admin/navbar.admin_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/admin/recipe.form.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/admin/recipe.form.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/admin/recipe.form_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/admin/recipe.form_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/admin/recipe.list.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/admin/recipe.list.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/admin/recipe.list_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/admin/recipe.list_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/admin/recipe.new.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/admin/recipe.new.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/admin/recipe.new_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/admin/recipe.new_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/admin/recipe.page.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/admin/recipe.page.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/admin/recipe.page_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/admin/recipe.page_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/components/card.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/components/card.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/components/card_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/components/card_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/components/footer.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/components/footer.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/components/footer_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/components/footer_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/components/head.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/components/head.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/components/head_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/components/head_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/components/scripts.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/components/scripts.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/components/scripts_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/components/scripts_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/components/searchForm.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/components/searchForm.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/components/searchForm_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/components/searchForm_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/components/select.category.ingredient.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/components/select.category.ingredient.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/components/select.category.ingredient_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/components/select.category.ingredient_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/components/select.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/components/select.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/components/select_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/components/select_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/components/slider.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/components/slider.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/components/slider_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/components/slider_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/components/stars.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/components/stars.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/components/stars_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/components/stars_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/components/unitSelector.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/components/unitSelector.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/components/unitSelector_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/components/unitSelector_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/generate.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/home.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/home.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/home_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/home_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/ingredient.list.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/ingredient.list.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/ingredient.list_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/ingredient.list_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/layout.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/layout.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/layout_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/layout_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/logo.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/logo.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/logo_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/logo_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/navbar.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/navbar.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/navbar_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/navbar_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/planner.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/planner.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/planner_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/planner_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/recipe.list.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/recipe.list.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/recipe.list_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/recipe.list_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/recipe.page.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/recipe.page.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/recipe.page_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/recipe.page_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/search.page.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/search.page.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/search.page_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/search.page_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/search.templ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/search.templ -------------------------------------------------------------------------------- /examples/full-app-gourmet/templa/search_templ.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templa/search_templ.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/embed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/embed.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/layouts/admin.layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/layouts/admin.layout.html -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/layouts/main.layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/layouts/main.layout.html -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/pages/admin.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/pages/admin.page.html -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/pages/admin/ingredients.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/pages/admin/ingredients.page.html -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/pages/admin/recipes.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/pages/admin/recipes.page.html -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/pages/admin/single-recipe.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/pages/admin/single-recipe.page.html -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/pages/index.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/pages/index.page.html -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/pages/ingredients.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/pages/ingredients.page.html -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/pages/recipe.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/pages/recipe.page.html -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/pages/recipes.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/pages/recipes.page.html -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/pages/search.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/pages/search.page.html -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/partials/dosing/preselected-unit.partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/partials/dosing/preselected-unit.partial.html -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/partials/footer.partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/partials/footer.partial.html -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/partials/head.partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/partials/head.partial.html -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/partials/htmx/htmx.partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/partials/htmx/htmx.partial.html -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/partials/ingredients/add-ingredient.partial.admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/partials/ingredients/add-ingredient.partial.admin.html -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/partials/ingredients/ingredient-card.partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/partials/ingredients/ingredient-card.partial.html -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/partials/ingredients/ingredient-slider.partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/partials/ingredients/ingredient-slider.partial.html -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/partials/ingredients/ingredients-list.partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/partials/ingredients/ingredients-list.partial.html -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/partials/navbar.partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/partials/navbar.partial.html -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/partials/recipes/add-recipe.partial.admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/partials/recipes/add-recipe.partial.admin.html -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/partials/recipes/recipe-card.partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/partials/recipes/recipe-card.partial.html -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/partials/recipes/recipe-line.partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/partials/recipes/recipe-line.partial.html -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/partials/recipes/recipe-slider.partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/partials/recipes/recipe-slider.partial.html -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/partials/recipes/recipes-grid.partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/partials/recipes/recipes-grid.partial.html -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/partials/recipes/recipes-list.partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/partials/recipes/recipes-list.partial.html -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/partials/scripts.partial.html: -------------------------------------------------------------------------------- 1 | {{ template "htmx.partial.html" }} 2 | -------------------------------------------------------------------------------- /examples/full-app-gourmet/templates/partials/search-result.partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/templates/partials/search-result.partial.html -------------------------------------------------------------------------------- /examples/full-app-gourmet/views/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/views/admin.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/views/admin.ingredient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/views/admin.ingredient.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/views/admin.recipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/views/admin.recipe.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/views/dosing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/views/dosing.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/views/ingredients.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/views/ingredients.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/views/partials.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/views/partials.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/views/planner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/views/planner.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/views/recipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/views/recipe.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/views/recipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/views/recipe_test.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/views/views.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/views/views.go -------------------------------------------------------------------------------- /examples/full-app-gourmet/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/full-app-gourmet/yarn.lock -------------------------------------------------------------------------------- /examples/generate-opengraph-image/Raleway-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/generate-opengraph-image/Raleway-Regular.ttf -------------------------------------------------------------------------------- /examples/generate-opengraph-image/controller/opengraph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/generate-opengraph-image/controller/opengraph.go -------------------------------------------------------------------------------- /examples/generate-opengraph-image/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/generate-opengraph-image/go.mod -------------------------------------------------------------------------------- /examples/generate-opengraph-image/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/generate-opengraph-image/go.sum -------------------------------------------------------------------------------- /examples/generate-opengraph-image/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/generate-opengraph-image/main.go -------------------------------------------------------------------------------- /examples/gin-compat/adaptor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/gin-compat/adaptor_test.go -------------------------------------------------------------------------------- /examples/gin-compat/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/gin-compat/go.mod -------------------------------------------------------------------------------- /examples/gin-compat/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/gin-compat/go.sum -------------------------------------------------------------------------------- /examples/gin-compat/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/gin-compat/handlers.go -------------------------------------------------------------------------------- /examples/gin-compat/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/gin-compat/main.go -------------------------------------------------------------------------------- /examples/gin-compat/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/gin-compat/main_test.go -------------------------------------------------------------------------------- /examples/hello-world/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/hello-world/go.mod -------------------------------------------------------------------------------- /examples/hello-world/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/hello-world/go.sum -------------------------------------------------------------------------------- /examples/hello-world/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/hello-world/main.go -------------------------------------------------------------------------------- /examples/openapi-generate/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/openapi-generate/cmd/main.go -------------------------------------------------------------------------------- /examples/openapi-generate/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/openapi-generate/go.mod -------------------------------------------------------------------------------- /examples/openapi-generate/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/openapi-generate/go.sum -------------------------------------------------------------------------------- /examples/openapi-generate/scripts/genspec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/openapi-generate/scripts/genspec.go -------------------------------------------------------------------------------- /examples/openapi-generate/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/openapi-generate/server/server.go -------------------------------------------------------------------------------- /examples/openapi-generate/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/openapi-generate/tools.go -------------------------------------------------------------------------------- /examples/openapi/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/openapi/go.mod -------------------------------------------------------------------------------- /examples/openapi/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/openapi/go.sum -------------------------------------------------------------------------------- /examples/openapi/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/openapi/main.go -------------------------------------------------------------------------------- /examples/petstore/controllers/middlewares.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/petstore/controllers/middlewares.go -------------------------------------------------------------------------------- /examples/petstore/controllers/pets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/petstore/controllers/pets.go -------------------------------------------------------------------------------- /examples/petstore/controllers/pets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/petstore/controllers/pets_test.go -------------------------------------------------------------------------------- /examples/petstore/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/petstore/go.mod -------------------------------------------------------------------------------- /examples/petstore/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/petstore/go.sum -------------------------------------------------------------------------------- /examples/petstore/lib/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/petstore/lib/server.go -------------------------------------------------------------------------------- /examples/petstore/lib/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/petstore/lib/server_test.go -------------------------------------------------------------------------------- /examples/petstore/lib/testdata/doc/openapi.golden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/petstore/lib/testdata/doc/openapi.golden.json -------------------------------------------------------------------------------- /examples/petstore/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/petstore/main.go -------------------------------------------------------------------------------- /examples/petstore/models/Pet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/petstore/models/Pet.go -------------------------------------------------------------------------------- /examples/petstore/services/in_memory_pets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/petstore/services/in_memory_pets.go -------------------------------------------------------------------------------- /examples/petstore/services/in_memory_pets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/petstore/services/in_memory_pets_test.go -------------------------------------------------------------------------------- /examples/with-listener/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/with-listener/go.mod -------------------------------------------------------------------------------- /examples/with-listener/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/with-listener/go.sum -------------------------------------------------------------------------------- /examples/with-listener/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/examples/with-listener/main.go -------------------------------------------------------------------------------- /extra/fuegoecho/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/extra/fuegoecho/adaptor.go -------------------------------------------------------------------------------- /extra/fuegoecho/adaptor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/extra/fuegoecho/adaptor_test.go -------------------------------------------------------------------------------- /extra/fuegoecho/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/extra/fuegoecho/context.go -------------------------------------------------------------------------------- /extra/fuegoecho/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/extra/fuegoecho/go.mod -------------------------------------------------------------------------------- /extra/fuegoecho/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/extra/fuegoecho/go.sum -------------------------------------------------------------------------------- /extra/fuegogin/adaptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/extra/fuegogin/adaptor.go -------------------------------------------------------------------------------- /extra/fuegogin/adaptor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/extra/fuegogin/adaptor_test.go -------------------------------------------------------------------------------- /extra/fuegogin/adaptor_wrapped_router_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/extra/fuegogin/adaptor_wrapped_router_test.go -------------------------------------------------------------------------------- /extra/fuegogin/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/extra/fuegogin/context.go -------------------------------------------------------------------------------- /extra/fuegogin/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/extra/fuegogin/go.mod -------------------------------------------------------------------------------- /extra/fuegogin/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/extra/fuegogin/go.sum -------------------------------------------------------------------------------- /extra/markdown/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/extra/markdown/go.mod -------------------------------------------------------------------------------- /extra/markdown/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/extra/markdown/go.sum -------------------------------------------------------------------------------- /extra/markdown/markdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/extra/markdown/markdown.go -------------------------------------------------------------------------------- /extra/markdown/markdown_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/extra/markdown/markdown_test.go -------------------------------------------------------------------------------- /extra/sql/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/extra/sql/go.mod -------------------------------------------------------------------------------- /extra/sql/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/extra/sql/go.sum -------------------------------------------------------------------------------- /extra/sql/sql_errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/extra/sql/sql_errors.go -------------------------------------------------------------------------------- /extra/sql/sql_errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/extra/sql/sql_errors_test.go -------------------------------------------------------------------------------- /extra/sqlite3/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/extra/sqlite3/go.mod -------------------------------------------------------------------------------- /extra/sqlite3/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/extra/sqlite3/go.sum -------------------------------------------------------------------------------- /extra/sqlite3/sqlite_errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/extra/sqlite3/sqlite_errors.go -------------------------------------------------------------------------------- /extra/sqlite3/sqlite_errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/extra/sqlite3/sqlite_errors_test.go -------------------------------------------------------------------------------- /generic_mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/generic_mux.go -------------------------------------------------------------------------------- /generics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/generics_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/go.sum -------------------------------------------------------------------------------- /go.work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/go.work -------------------------------------------------------------------------------- /html.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/html.go -------------------------------------------------------------------------------- /html_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/html_test.go -------------------------------------------------------------------------------- /internal/common_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/internal/common_context.go -------------------------------------------------------------------------------- /mdsf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/mdsf.json -------------------------------------------------------------------------------- /middleware/basicauth/basicauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/middleware/basicauth/basicauth.go -------------------------------------------------------------------------------- /middleware/basicauth/basicauth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/middleware/basicauth/basicauth_test.go -------------------------------------------------------------------------------- /middleware/basicauth/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/middleware/basicauth/go.mod -------------------------------------------------------------------------------- /middleware/basicauth/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/middleware/basicauth/go.sum -------------------------------------------------------------------------------- /middleware/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/middleware/cache/cache.go -------------------------------------------------------------------------------- /middleware/cache/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/middleware/cache/cache_test.go -------------------------------------------------------------------------------- /middleware/cache/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/middleware/cache/go.mod -------------------------------------------------------------------------------- /middleware/cache/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/middleware/cache/go.sum -------------------------------------------------------------------------------- /middleware/cache/in_memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/middleware/cache/in_memory.go -------------------------------------------------------------------------------- /middleware/cache/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/middleware/cache/writer.go -------------------------------------------------------------------------------- /middleware/cache/writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/middleware/cache/writer_test.go -------------------------------------------------------------------------------- /mock_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/mock_context.go -------------------------------------------------------------------------------- /mock_context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/mock_context_test.go -------------------------------------------------------------------------------- /multi_return.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/multi_return.go -------------------------------------------------------------------------------- /multi_return_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/multi_return_test.go -------------------------------------------------------------------------------- /net_http_mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/net_http_mux.go -------------------------------------------------------------------------------- /net_http_mux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/net_http_mux_test.go -------------------------------------------------------------------------------- /op-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/op-logo.svg -------------------------------------------------------------------------------- /openapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/openapi.go -------------------------------------------------------------------------------- /openapi_description.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/openapi_description.go -------------------------------------------------------------------------------- /openapi_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/openapi_handler.go -------------------------------------------------------------------------------- /openapi_handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/openapi_handler_test.go -------------------------------------------------------------------------------- /openapi_operations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/openapi_operations.go -------------------------------------------------------------------------------- /openapi_operations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/openapi_operations_test.go -------------------------------------------------------------------------------- /openapi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/openapi_test.go -------------------------------------------------------------------------------- /option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/option.go -------------------------------------------------------------------------------- /option/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/option/option.go -------------------------------------------------------------------------------- /option_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/option_test.go -------------------------------------------------------------------------------- /param.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/param.go -------------------------------------------------------------------------------- /param/param.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/param/param.go -------------------------------------------------------------------------------- /param_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/param_test.go -------------------------------------------------------------------------------- /parameter_registration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/parameter_registration_test.go -------------------------------------------------------------------------------- /params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/params.go -------------------------------------------------------------------------------- /params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/params_test.go -------------------------------------------------------------------------------- /perf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/perf.go -------------------------------------------------------------------------------- /perf_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/perf_test.go -------------------------------------------------------------------------------- /route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/route.go -------------------------------------------------------------------------------- /schema_customizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/schema_customizer.go -------------------------------------------------------------------------------- /security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/security.go -------------------------------------------------------------------------------- /security_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/security_test.go -------------------------------------------------------------------------------- /serialization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/serialization.go -------------------------------------------------------------------------------- /serialization_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/serialization_test.go -------------------------------------------------------------------------------- /serve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/serve.go -------------------------------------------------------------------------------- /serve_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/serve_test.go -------------------------------------------------------------------------------- /server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/server.go -------------------------------------------------------------------------------- /server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/server_test.go -------------------------------------------------------------------------------- /static/embed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/static/embed.go -------------------------------------------------------------------------------- /static/fuego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/static/fuego.svg -------------------------------------------------------------------------------- /testdata/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/testdata/test.html -------------------------------------------------------------------------------- /testing-from-outside/cors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/testing-from-outside/cors_test.go -------------------------------------------------------------------------------- /testing-from-outside/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/testing-from-outside/go.mod -------------------------------------------------------------------------------- /testing-from-outside/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/testing-from-outside/go.sum -------------------------------------------------------------------------------- /tests_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/tests_test.go -------------------------------------------------------------------------------- /validate_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/validate_params.go -------------------------------------------------------------------------------- /validate_params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/validate_params_test.go -------------------------------------------------------------------------------- /validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/validation.go -------------------------------------------------------------------------------- /validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/go-fuego/fuego/HEAD/validation_test.go --------------------------------------------------------------------------------