mirror of
https://github.com/Specoolazius/mcserver-discordbot.git
synced 2024-11-25 00:39:41 +01:00
license
This commit is contained in:
parent
f6cfdc6f28
commit
0a26310a2f
@ -1,3 +1,7 @@
|
|||||||
|
# Project is under GNU GENERAL PUBLIC LICENSE 3.0
|
||||||
|
#
|
||||||
|
# 2022, created by Specoolazius
|
||||||
|
|
||||||
# These are the settings you need to configure.
|
# These are the settings you need to configure.
|
||||||
# Rename this file to "config.ini"
|
# Rename this file to "config.ini"
|
||||||
# remove ; to modify further options
|
# remove ; to modify further options
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
# Project is under GNU GENERAL PUBLIC LICENSE 3.0
|
||||||
|
#
|
||||||
|
# 2022, created by Specoolazius
|
||||||
|
|
||||||
# You can change setting in here if you wish but it works
|
# You can change setting in here if you wish but it works
|
||||||
# fine as it is configured by default
|
# fine as it is configured by default
|
||||||
# remove ; to modify options
|
# remove ; to modify options
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
"""
|
||||||
|
Project is under GNU GENERAL PUBLIC LICENSE 3.0
|
||||||
|
|
||||||
|
2022, created by Specoolazius
|
||||||
|
"""
|
||||||
|
|
||||||
from .admin import Admin
|
from .admin import Admin
|
||||||
from .startstop import StartStop
|
from .startstop import StartStop
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
"""
|
||||||
|
Project is under GNU GENERAL PUBLIC LICENSE 3.0
|
||||||
|
|
||||||
|
2022, created by Specoolazius
|
||||||
|
"""
|
||||||
|
|
||||||
import asyncio
|
import asyncio
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
"""
|
||||||
|
Project is under GNU GENERAL PUBLIC LICENSE 3.0
|
||||||
|
|
||||||
|
2022, created by Specoolazius
|
||||||
|
"""
|
||||||
|
|
||||||
import discord
|
import discord
|
||||||
from discord.commands import slash_command
|
from discord.commands import slash_command
|
||||||
|
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
"""
|
||||||
|
Project is under GNU GENERAL PUBLIC LICENSE 3.0
|
||||||
|
|
||||||
|
2022, created by Specoolazius
|
||||||
|
"""
|
||||||
|
|
||||||
from .config import Configs
|
from .config import Configs
|
||||||
from .presence import Presence
|
from .presence import Presence
|
||||||
from .client import Client
|
from .client import Client
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
"""
|
||||||
|
Project is under GNU GENERAL PUBLIC LICENSE 3.0
|
||||||
|
|
||||||
|
2022, created by Specoolazius
|
||||||
|
"""
|
||||||
|
|
||||||
from abc import ABC
|
from abc import ABC
|
||||||
import asyncio
|
import asyncio
|
||||||
from typing import Any
|
from typing import Any
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
"""
|
||||||
|
Project is under GNU GENERAL PUBLIC LICENSE 3.0
|
||||||
|
|
||||||
|
2022, created by Specoolazius
|
||||||
|
"""
|
||||||
|
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from configparser import ConfigParser
|
from configparser import ConfigParser
|
||||||
import re
|
import re
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
"""
|
||||||
|
Project is under GNU GENERAL PUBLIC LICENSE 3.0
|
||||||
|
|
||||||
|
2022, created by Specoolazius
|
||||||
|
"""
|
||||||
|
|
||||||
import asyncio
|
import asyncio
|
||||||
import time
|
import time
|
||||||
|
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
"""
|
||||||
|
Project is under GNU GENERAL PUBLIC LICENSE 3.0
|
||||||
|
|
||||||
|
2022, created by Specoolazius
|
||||||
|
"""
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
from aiohttp import ClientConnectorError
|
from aiohttp import ClientConnectorError
|
||||||
|
|
||||||
|
@ -1,4 +1,8 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Project is under GNU GENERAL PUBLIC LICENSE 3.0
|
||||||
|
#
|
||||||
|
# 2022, created by Specoolazius
|
||||||
|
|
||||||
cd ~/mcserver-discordbot/bot || exit;
|
cd ~/mcserver-discordbot/bot || exit;
|
||||||
sudo python3.10 -O run.py
|
sudo python3.10 -O run.py
|
||||||
|
@ -1,4 +1,9 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Project is under GNU GENERAL PUBLIC LICENSE 3.0
|
||||||
|
#
|
||||||
|
# 2022, created by Specoolazius
|
||||||
|
|
||||||
# Updates bot from https://github.com/Specoolazius/mcserver-discordbot
|
# Updates bot from https://github.com/Specoolazius/mcserver-discordbot
|
||||||
|
|
||||||
git stash
|
git stash
|
||||||
|
Loading…
Reference in New Issue
Block a user