mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-02-06 16:12:14 +08:00
18 lines
246 B
Python
18 lines
246 B
Python
import os
|
|
import time
|
|
os.environ['ntwork_LOG'] = "ERROR"
|
|
import ntwork
|
|
|
|
wework = ntwork.WeWork()
|
|
|
|
|
|
def forever():
|
|
try:
|
|
while True:
|
|
time.sleep(0.1)
|
|
except KeyboardInterrupt:
|
|
ntwork.exit_()
|
|
os._exit(0)
|
|
|
|
|