From 4966c8fbccbec4e051907a8694139cb49377aae7 Mon Sep 17 00:00:00 2001 From: Alex Date: Sun, 6 Feb 2022 22:45:40 +0300 Subject: [PATCH] Create README.md --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..49d5b73 --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +# Geezer framework + +Geezer is Feathers like SOA framework. + +## Current status + +- [x] Service +- [x] Hooks +- [x] JSON/Text renderers +- [ ] Authorization service +- [ ] DB CRUD service +- [ ] Documentation + +## Usage + +TODO. + +See example: + +1. Example service: https://github.com/neonxp/geezer-example/blob/master/services/hello/service.go +2. Example hooks: https://github.com/neonxp/geezer-example/blob/master/services/hello/hooks.go +3. Register service: https://github.com/neonxp/geezer-example/blob/master/cmd/app/main.go#L27 +4. Register hooks: https://github.com/neonxp/geezer-example/blob/master/cmd/app/main.go#L26