Skip to content

tux.main

Entrypoint for the Tux Discord bot application.

Functions:

Name Description
run

Instantiate and run the Tux application.

Classes

Functions

run() -> None

Instantiate and run the Tux application.

This function is the entry point for the Tux application. It creates an instance of the TuxApp class and runs it.

Source code in tux/main.py
Python
def run() -> None:
    """
    Instantiate and run the Tux application.

    This function is the entry point for the Tux application.
    It creates an instance of the TuxApp class and runs it.
    """

    app = TuxApp()
    app.run()