Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libdap-plugins-python
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cellframe
libdap-plugins-python
Merge requests
!4
Features 2954
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Features 2954
features-2954
into
master
Overview
7
Commits
11
Pipelines
0
Changes
8
Merged
alexey.stratulat
requested to merge
features-2954
into
master
4 years ago
Overview
7
Commits
11
Pipelines
0
Changes
3
Expand
[+] Added commands:
plugins list - show list plugins
plugins show --name <plugin_name> - show information for plugin
plugins restart - Restart all plugins
plugins reload --name <plugin_name> - Restart plugin
👍
0
👎
0
Merge request reports
Viewing commit
39f953ce
Prev
Next
Show latest version
3 files
+
57
−
26
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
39f953ce
[*] Fixed in handler command plugins restart and plugins show.
· 39f953ce
alexey.stratulat
authored
4 years ago
include/dap_chain_plugins_command.h
0 → 100644
+
41
−
0
Options
/*
* Authors:
* Alexey V. Stratulat <alexey.stratulat@demlabs.net>
* DeM Labs Inc. https://demlabs.net
* DeM Labs Open source community https://gitlab.demlabs.net/cellframe/libdap-plugins-python
* Copyright (c) 2017-2020
* All rights reserved.
This file is part of DAP (Deus Applications Prototypes) the open source project
DAP (Deus Applicaions Prototypes) is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
DAP is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with any DAP based project. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#define _DAP_CHAIN_PLUGINS_COMMAND_
#include
"dap_chain_node_cli.h"
#include
"dap_chain_node_cli_cmd.h"
#include
"dap_chain_plugins_manifest.h"
#include
"dap_chain_plugins.h"
#ifdef __cplusplus
extern
"C"
{
#endif
void
dap_chain_plugins_command_create
(
void
);
int
dap_chain_plugins_command_handler
(
int
a_argc
,
char
**
a_argv
,
void
*
a_arg_func
,
char
**
a_str_reply
);
#ifdef __cplusplus
}
#endif
Loading