rename ranchimallflo_api.py to api_main.py

This commit is contained in:
Sai Raj 2024-07-18 05:29:40 -04:00
parent 31ebfb9278
commit 9d2b63ce77
3 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ sse_pubKey = '< YOUR PUBLIC KEY FROM THE PUBLIC KEY PAIR >'
To start the API, execute the following from inside the folder
```
python ranchimallflo_api.py
python api_main.py
```
## API HTTP Endpoints

View File

@ -1,4 +1,4 @@
from ranchimallflo_api import app
from api_main import app
if __name__ == "__main__":
app.run()