server: rename moonraker.py to server.py

Signed-off-by:  Eric Callahan <arksiine.code@gmail.com>
This commit is contained in:
Eric Callahan 2022-10-18 07:35:25 -04:00
parent 1e7be4598c
commit a5d63db9a6
No known key found for this signature in database
GPG Key ID: 5A1EB336DFB4C71B
8 changed files with 7 additions and 7 deletions

View File

@ -48,7 +48,7 @@ from typing import (
)
if TYPE_CHECKING:
from tornado.httpserver import HTTPServer
from moonraker import Server
from server import Server
from eventloop import EventLoop
from confighelper import ConfigHelper
from klippy_connection import KlippyConnection as Klippy

View File

@ -27,7 +27,7 @@ from typing import (
Any
)
if TYPE_CHECKING:
from moonraker import Server
from server import Server
from confighelper import ConfigHelper
from io import BufferedWriter
StrOrPath = Union[str, pathlib.Path]

View File

@ -17,7 +17,7 @@ from typing import (
)
if TYPE_CHECKING:
from moonraker import Server
from server import Server
from confighelper import ConfigHelper
from .secrets import Secrets

View File

@ -37,7 +37,7 @@ from typing import (
cast
)
if TYPE_CHECKING:
from moonraker import Server
from server import Server
from confighelper import ConfigHelper
from websockets import WebRequest
from klippy_connection import KlippyConnection

View File

@ -20,7 +20,7 @@ from typing import (
)
if TYPE_CHECKING:
from moonraker import Server
from server import Server
from confighelper import ConfigHelper
from websockets import WebRequest
from .database import MoonrakerDatabase

View File

@ -34,7 +34,7 @@ from typing import (
Type,
)
if TYPE_CHECKING:
from moonraker import Server
from server import Server
from components.gpio import GpioFactory, GpioOutputPin
from components.template import TemplateFactory
from io import TextIOWrapper

View File

@ -30,7 +30,7 @@ from typing import (
List,
)
if TYPE_CHECKING:
from moonraker import Server
from server import Server
from app import APIDefinition
from klippy_connection import KlippyConnection as Klippy
from .components.extensions import ExtensionManager