Change send/publish api to better support async and represent reality (#137)

* Make send and publish better represent reality

* fix team-one
This commit is contained in:
Jack Gerrits
2024-06-27 13:40:12 -04:00
committed by GitHub
parent 905e2e3f95
commit a13c971b16
32 changed files with 257 additions and 116 deletions

View File

@@ -18,7 +18,8 @@ extensions = [
"sphinx.ext.autosummary",
"sphinx.ext.napoleon",
"sphinxcontrib.apidoc",
"myst_parser"
"myst_parser",
"sphinx.ext.intersphinx"
]
apidoc_module_dir = '../../src/agnext'
@@ -54,4 +55,6 @@ html_theme_options = {
autodoc_default_options = {
"members": True,
"undoc-members": True,
}
}
intersphinx_mapping = {'python': ('https://docs.python.org/3', None)}