You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
359 B
18 lines
359 B
2 years ago
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
import tkinter as tk
|
||
|
from Interface import Interface
|
||
|
|
||
|
|
||
|
class InterfaceServeur(Interface):
|
||
|
def __init__(self):
|
||
|
Interface.__init__(self, "serveur")
|
||
|
self.n = 870567544966633301
|
||
|
self.e = 42205
|
||
|
self.d = 769020235650503533
|
||
|
# à compléter
|
||
|
|
||
|
|
||
|
It = InterfaceServeur()
|
||
|
It.mainloop()
|