16 lines
343 B
Python
16 lines
343 B
Python
import os
|
|
import sys
|
|
|
|
APP_PATH = os.path.dirname(sys.executable) if getattr(sys, 'frozen', False) else os.path.dirname(__file__)
|
|
|
|
|
|
allowed_telegram_ids = [
|
|
7532624817, # Me
|
|
816217667, # Igor
|
|
6671635397, # Nikita
|
|
355308397, # SerGey
|
|
5734685107, # Seller manager,
|
|
355242295, # Dsnonchik
|
|
651158209 # kristina
|
|
]
|