I hereby claim:
- I am agrojas on github.
- I am agrojas (https://keybase.io/agrojas) on keybase.
- I have a public key ASCMrfumFutqCXNYJRIFDa86JdoN_O_XG_5LjClD74tsTQo
To claim this, I am signing this object:
| FROM python:alpine3.7 | |
| COPY . /app | |
| WORKDIR /app | |
| RUN pip install -r requirements.txt | |
| EXPOSE 5000 | |
| CMD python ./index.py |
| openapi: 3.0.1 | |
| info: | |
| title: Employees API | |
| description: This is a preliminary definition to Employees system API | |
| version: 1.0.0 | |
| servers: | |
| - url: https://employees.swagger.io/v2 | |
| - url: http://employees.swagger.io/v2 | |
| tags: | |
| - name: employees |
| openapi: 3.0.1 | |
| info: | |
| title: Employees API | |
| description: This is a preliminary definition to Employees system API | |
| version: 1.0.0 | |
| servers: | |
| - url: https://employees.swagger.io/v2 | |
| - url: http://employees.swagger.io/v2 | |
| tags: | |
| - name: employees |
| openapi: 3.0.1 | |
| info: | |
| title: Employees API | |
| description: This is a preliminary definition to Employees system API | |
| version: 1.0.0 | |
| servers: | |
| - url: https://employees.swagger.io/v2 | |
| - url: http://employees.swagger.io/v2 | |
| tags: | |
| - name: employees |
I hereby claim:
To claim this, I am signing this object:
| import datetime | |
| from business_rules import run_all | |
| from business_rules.actions import BaseActions, rule_action | |
| from business_rules.fields import FIELD_NUMERIC | |
| from business_rules.variables import (BaseVariables, | |
| numeric_rule_variable, | |
| string_rule_variable) | |