Refactor entry points so that they all have a main function. (#13052)

This commit is contained in:
reivilibre 2022-06-14 18:41:06 +01:00 committed by GitHub
parent c99b511db9
commit 5b645ae2ad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 61 additions and 10 deletions

View file

@ -17,6 +17,11 @@ import sys
from synapse.app.generic_worker import start
from synapse.util.logcontext import LoggingContext
if __name__ == "__main__":
def main() -> None:
with LoggingContext("main"):
start(sys.argv[1:])
if __name__ == "__main__":
main()