# Packages
No description provided by the author
# README
liquor
Liquor is a web development framework built with Golang, designed to simplify the implementation of web projects. It is primarily focused on backend development and leverages several libraries specifically tailored for web development.
Install CLI
go install github.com/go-liquor/liquor@latest
Usage
Create a new app
liquor app create --name <APP_NAME> --pkg <PACKAGE_NAME>
Run application
liquor run
Enable module
liquor app enable <MODULE_NAME>
Create a new resource
Creates a new REST API resource with all necessary files including handlers, services, routes, repositories, entity, and migrations.
liquor create resource --name <resourceName> --group /api/<GROUP_NAME>