netromdk / slacker

Slacker - Easy access to the Slack API and admin of workspaces/teams.
MIT License
14 stars 0 forks source link

Clean up Slacker.py #25

Closed 0verbyte closed 6 years ago

0verbyte commented 6 years ago

Currently Slacker.py contains a few utility functions that should be refactored into respective classes. We should only have main in Slacker.py.

netromdk commented 6 years ago

Technically, it could actually suffice with only:

from slacker.common import main
if __name__ == "__main__":
  main()
0verbyte commented 6 years ago

works for me, will do after #17