mirror of
https://github.com/octoleo/telegram-bot-bash.git
synced 2024-11-12 03:56:26 +00:00
30 lines
729 B
Bash
30 lines
729 B
Bash
|
#!/bin/bash
|
||
|
#===============================================================================
|
||
|
#
|
||
|
# FILE: bashbot_init.inc.sh
|
||
|
#
|
||
|
# USAGE: source bashbot_init.inc.sh
|
||
|
#
|
||
|
# DESCRIPTION: extend / overwrite bashbot initialisation
|
||
|
#
|
||
|
# LICENSE: WTFPLv2 http://www.wtfpl.net/txt/copying/
|
||
|
# AUTHOR: KayM (gnadelwartz), kay@rrr.de
|
||
|
# CREATED: 27.01.2021 13:42
|
||
|
#
|
||
|
#### $$VERSION$$ v1.35-dev-27-gca9ea1b
|
||
|
#===============================================================================
|
||
|
|
||
|
##########
|
||
|
# commands to execute before bot_init() is called
|
||
|
|
||
|
|
||
|
#########
|
||
|
# uncomment to overwrite default init
|
||
|
# bot_init() { my_init(); }
|
||
|
|
||
|
########
|
||
|
# called after default init is finished
|
||
|
my_init() {
|
||
|
: # ypur commands here
|
||
|
}
|