mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-02-13 08:14:58 -05:00
14 lines
265 B
Python
14 lines
265 B
Python
from backend.app import run_processes
|
|
from backend.data.db_manager import DatabaseManager
|
|
|
|
|
|
def main():
|
|
"""
|
|
Run all the processes required for the AutoGPT-server REST API.
|
|
"""
|
|
run_processes(DatabaseManager())
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|