forked from dymik739/modular-bot-framework-for-telegram
6 lines
103 B
Python
6 lines
103 B
Python
import socket
|
|
|
|
SEND_ADDR = ( "127.0.0.1", 5001 )
|
|
|
|
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|