This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from discord.ext import commands | |
import discord | |
from utils import form_manager | |
class Form: | |
@commands.command() | |
async def startform(self, ctx): | |
questions = [form_manager.Question("How do you do today?", key="hello0"), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
import subprocess | |
# SystemD service creator | |
## Creates a systemd service file and moves it to the appropriate location and enables it | |
system_service = """[Unit] | |
Description={description} | |
After=multi-user.target |