first commit

This commit is contained in:
Dakota Nous 2025-04-29 12:10:10 -07:00
commit 621d00dd80
89 changed files with 15315 additions and 0 deletions

View file

@ -0,0 +1,9 @@
import uvicorn
def main():
uvicorn.run("atroposlib.api:app", host="0.0.0.0", port=8000, reload=True)
if __name__ == "__main__":
main()