patch
This commit is contained in:
parent
abb759e311
commit
419dabb564
8
main.py
8
main.py
@ -1,3 +1,11 @@
|
|||||||
|
import os #hi there
|
||||||
|
def write_pid():
|
||||||
|
pid = os.getpid()
|
||||||
|
with open('/tmp/maze.pid', 'w') as f:
|
||||||
|
f.write(str(pid))
|
||||||
|
print('Hello my(i \'m mazebot) pid is ' + str(pid))
|
||||||
|
write_pid()
|
||||||
|
|
||||||
import json
|
import json
|
||||||
import discord
|
import discord
|
||||||
from discord.ext import commands
|
from discord.ext import commands
|
||||||
|
Loading…
Reference in New Issue
Block a user