-
Notifications
You must be signed in to change notification settings - Fork 2
/
classfile_template.py
37 lines (29 loc) · 1010 Bytes
/
classfile_template.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
# vim: set expandtab tabstop=4 shiftwidth=4 :
# This is an Exocortex subclass that implements MOOFMOOFMOOF. It interfaces
# with MOOFMOOFMOOF and carries out the following functions:
# -
# TODO:
# -
# By: The Doctor <drwho at virtadpt dot net>
# 0x807B17C1 / 7960 1CDC 85C9 0B63 8D9F DD89 3BD8 FF2B 807B 17C1
# License: GPLv3
# Pre-requisite modules have their own licenses.
# Load modules.
from exocortex import ExocortexBot
import sys
# Classes.
class MOOFMOOFMOOF(ExocortexBot):
# Class attributes go here so they're easy to find.
# A list of commands defined on bots descended from this particular class.
# This list is inherited from the ExocortexBot base class, but is extended
# to include TwitterBot-specific commands.
commands = ExocortexBot.commands
MOOFMOOFMOOF_commands = []
commands.append(MOOFMOOFMOOF_commands)
# Core code...
if __name__ == '__main__':
# Self tests go here...
sys.exit(0)
# Fin.