Skip to content

Commit 6bfd72e

Browse files
프로젝트 기본 구조 변경
1 parent c935da2 commit 6bfd72e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+111
-96
lines changed

README.md

Lines changed: 4 additions & 17 deletions

src/__init__.py

Whitespace-only changes.

src/examples/__init__.py

Whitespace-only changes.
Lines changed: 23 additions & 4 deletions

src/examples/modules/__init__.py

Whitespace-only changes.

src/examples/modules/group/__init__.py

Whitespace-only changes.

examples/group/add_group_message.py renamed to src/examples/modules/group/add_group_message.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import json
2-
import lib.message as message
2+
from src.lib import message
33

44
if __name__ == '__main__':
55
# [INPUT_GROUP_ID] 에 그룹 아이디를 넣어주세요

examples/group/add_group_message_with_image.py renamed to src/examples/modules/group/add_group_message_with_image.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
import requests
21
import json
3-
import lib.auth as auth
4-
import lib.config as config
5-
import lib.message as message
2+
from src import lib as message
63

74
if __name__ == '__main__':
85
# [GROUP_ID] 에 그룹 아이디를 넣어주세요

examples/group/cancel_reservation_group.py renamed to src/examples/modules/group/cancel_reservation_group.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import json
2-
import lib.message as message
2+
from src import lib as message
33

44
'''
55
예약 발송 취소 예제, 이미 예약 발송이 설정되어 있어야 합니다.

examples/group/create_group.py renamed to src/examples/modules/group/create_group.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import json
2-
import lib.message as message
2+
from src import lib as message
33

44
if __name__ == '__main__':
55
res = message.post('/messages/v4/groups', data={})

0 commit comments

Comments
 (0)