-
-
Notifications
You must be signed in to change notification settings - Fork 573
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔀 Merge pull request #16 from nonebot/dev
Pre Release 2.0.0a2
- Loading branch information
Showing
53 changed files
with
2,993 additions
and
190 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ jobs: | |
- uses: actions/checkout@v2 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
|
@@ -27,10 +27,10 @@ jobs: | |
- name: Build Doc | ||
run: poetry run sphinx-build -M markdown ./docs_build ./build | ||
|
||
- name: Copy Files | ||
run: cp -r ./build/markdown/* ./docs/api/ | ||
|
||
- run: | | ||
git config user.name nonebot | ||
git config user.email [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,3 +29,6 @@ | |
|
||
|
||
* [nonebot.exception](exception.html) | ||
|
||
|
||
* [nonebot.adapters.cqhttp](adapters/cqhttp.html) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
contentSidebar: true | ||
sidebarDepth: 0 | ||
--- | ||
|
||
# NoneBot.adapters 模块 | ||
|
||
|
||
## _class_ `BaseBot` | ||
|
||
基类:`abc.ABC` | ||
|
||
|
||
## _class_ `BaseEvent` | ||
|
||
基类:`abc.ABC` | ||
|
||
|
||
### `_raw_event` | ||
|
||
原始 event | ||
|
||
|
||
## _class_ `BaseMessageSegment` | ||
|
||
基类:`abc.ABC` | ||
|
||
|
||
## _class_ `BaseMessage` | ||
|
||
基类:`list`, `abc.ABC` | ||
|
||
|
||
### `append(obj)` | ||
|
||
Append object to the end of the list. | ||
|
||
|
||
### `extend(obj)` | ||
|
||
Extend list by appending elements from the iterable. |
Oops, something went wrong.