18 lines
311 B
Python
18 lines
311 B
Python
# TODO: Datenbankabfrage
|
|
# Auswahlmenü ( Neue Fragen/ Oder Abrfrage)
|
|
# Ein und Ausgabe der Fragen/Antworten
|
|
|
|
import config
|
|
import database_connection
|
|
|
|
|
|
def menue():
|
|
# TODO Menü erstellen
|
|
return
|
|
|
|
|
|
def main():
|
|
database_connection.db_connection(config.user, config.password, config.host)
|
|
|
|
|
|
main() |