function
This commit is contained in:
parent
a4826c67c7
commit
6f39b11ff2
@ -1,4 +1,6 @@
|
|||||||
import asyncio
|
import asyncio
|
||||||
|
import socket
|
||||||
|
from config import HEROKU_API_KEY
|
||||||
from driver.core import bot, calls
|
from driver.core import bot, calls
|
||||||
from driver.database.dbqueue import remove_active_chat
|
from driver.database.dbqueue import remove_active_chat
|
||||||
from driver.queues import QUEUE, clear_queue, get_queue, pop_an_item
|
from driver.queues import QUEUE, clear_queue, get_queue, pop_an_item
|
||||||
@ -144,3 +146,13 @@ async def bash(cmd):
|
|||||||
err = stderr.decode().strip()
|
err = stderr.decode().strip()
|
||||||
out = stdout.decode().strip()
|
out = stdout.decode().strip()
|
||||||
return out, err
|
return out, err
|
||||||
|
|
||||||
|
|
||||||
|
async def is_heroku():
|
||||||
|
return "heroku" in socket.getfqdn()
|
||||||
|
|
||||||
|
|
||||||
|
async def user_input(input):
|
||||||
|
if " " in input or "\n" in input:
|
||||||
|
return str(input.split(maxsplit=1)[1].strip())
|
||||||
|
return ""
|
||||||
|
Loading…
Reference in New Issue
Block a user