mirror of
https://github.com/gryf/slack-backup.git
synced 2025-12-17 11:30:25 +01:00
11 lines
170 B
Python
Executable File
11 lines
170 B
Python
Executable File
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
Execute commands for slack-backup
|
|
"""
|
|
from slack_backup import command
|
|
|
|
|
|
if __name__ == "__main__":
|
|
command.main()
|