from fastapi import FastAPI
app = FastAPI()
@app.get('/')
def main():
print("Hello from env-management!")
if __name__ == "__main__":
main()