This commit is contained in:
Bruno Rybársky 2022-02-23 10:52:55 +00:00
parent abb759e311
commit 419dabb564

@ -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