diff options
| author | pepperpepperpepper <pepper@scannerjammer.com> | 2015-11-29 17:43:44 -0800 |
|---|---|---|
| committer | pepperpepperpepper <pepper@scannerjammer.com> | 2015-11-29 17:43:44 -0800 |
| commit | 9a7bf3bffb2a8459e66b988aaff53611723b5ab4 (patch) | |
| tree | cc4ef0de15e22f5c6e5f8d2ecf16db0486d7a8ff /ricky/imbreak/__init__.py | |
| parent | 10a619b2c7227b2ad214fbb985141b884fbe87fb (diff) | |
required=0, -e commit message for your changes. Lines starting
Diffstat (limited to 'ricky/imbreak/__init__.py')
| -rw-r--r-- | ricky/imbreak/__init__.py | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/ricky/imbreak/__init__.py b/ricky/imbreak/__init__.py index 752d977..c2a5a61 100644 --- a/ricky/imbreak/__init__.py +++ b/ricky/imbreak/__init__.py @@ -1 +1,12 @@ -from ricky.imbreak.imbreak import ImBreak +from ricky.im import Im +from ricky.imbreak.params import ImBreakParams +from ricky.config import IMBREAK_URL + +class ImBreak(Im): + def __init__(self): + self.url = IMBREAK_URL + def params_init(self): + new_params = ImBreakParams() + #new_params = self.get_from_server() + new_params.api = self + return new_params |
