File tree Expand file tree Collapse file tree 4 files changed +454
-1
lines changed
Expand file tree Collapse file tree 4 files changed +454
-1
lines changed Original file line number Diff line number Diff line change 77
88__email__ = "engineering@bugout.dev"
99__license__ = "MIT"
10- __version__ = "0.2.5 "
10+ __version__ = "0.2.6 "
1111
1212__all__ = (
1313 "__author__" ,
Original file line number Diff line number Diff line change 22import textwrap
33
44from .app import Bugout
5+ from .jobs import generate_cli as generate_jobs_cli
56
67
78def get_methods_list (args : argparse .Namespace ) -> None :
@@ -27,6 +28,13 @@ def main() -> None:
2728 )
2829 parser_common .set_defaults (func = get_methods_list )
2930
31+ parser_jobs = generate_jobs_cli ()
32+ subcommands .add_parser (
33+ "jobs" ,
34+ parents = [parser_jobs ],
35+ add_help = False ,
36+ )
37+
3038 args = parser .parse_args ()
3139 args .func (args )
3240
Original file line number Diff line number Diff line change @@ -245,3 +245,7 @@ class BugoutHumbugIntegration(BaseModel):
245245
246246class BugoutHumbugIntegrationsList (BaseModel ):
247247 integrations : List [BugoutHumbugIntegration ] = Field (default_factory = list )
248+
249+
250+ class BugoutSearchResultWithEntryID (BugoutSearchResult ):
251+ id : str
You can’t perform that action at this time.
0 commit comments