welcome, holoAdvent!

This commit is contained in:
muskit
2023-08-13 16:01:10 -07:00
parent e657f88ba0
commit 9ab486d1bc
2 changed files with 18 additions and 6 deletions
+12 -6
View File
@@ -1,11 +1,11 @@
import util
holo_en = dict()
holo_id = dict()
niji_en = dict()
niji_exid = dict()
talents = dict()
talents_company = dict()
holo_en = dict[int, str]
holo_id = dict[int, str]
niji_en = dict[int, str]
niji_exid = dict[int, str]
talents = dict[int, str]
talents_company = dict[int, str]
test_talents = dict()
@@ -41,6 +41,12 @@ def init():
test_talents = holo_en
def is_niji(id: int) -> bool:
return id in niji_en or id in niji_exid
def is_holo(id: int) -> bool:
return id in holo_en or id in holo_id
def get_twitter_rules():
global talents
rules = list()