Skip to content

Index

@startuml

package "Modern MISP" {
  [API]
  [Worker]
  [Frontend]
}
Frontend -- API
API - Worker


database "MySql"
database "Redis"

[API] --> MySql
[Worker] --> MySql
[Worker] - Redis

@enduml

api-worker-integration

app module-attribute

app = init_app()

The FastAPI instance.

main

main() -> None

The entry point of the MMISP Worker application. Starts the enabled workers and sets up the API.