9 lines
261 B
Python
9 lines
261 B
Python
|
|
import tkinter as tk
|
||
|
|
from tkinter import ttk, filedialog, messagebox
|
||
|
|
|
||
|
|
# Contenu fenêtre Analyse Switch
|
||
|
|
def open_switch_gui(root, BASE_DIR):
|
||
|
|
messagebox.showinfo(
|
||
|
|
"Analyse log Switch",
|
||
|
|
"L'analyse log switch n'est pas encore disponible."
|
||
|
|
)
|