Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Dunitrust
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
nodes
rust
Dunitrust
Merge requests
!105
WIP: Resolve "counter test module"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Closed
WIP: Resolve "counter test module"
counter/117-counter-test-module
into
dev
Overview
29
Commits
2
Pipelines
0
Changes
6
Closed
WIP: Resolve "counter test module"
Ghost User
requested to merge
counter/117-counter-test-module
into
dev
Dec 13, 2018
Overview
15
Commits
2
Pipelines
0
Changes
6
Closes
#117 (closed)
0
0
Merge request reports
Compare
dev
version 9
cba355f2
Feb 8, 2019
version 8
54beb28b
Feb 6, 2019
version 7
c1ad10b3
Feb 4, 2019
version 6
4f10ef0e
Feb 4, 2019
version 5
8c8e69a6
Feb 3, 2019
version 4
8c8e69a6
Jan 31, 2019
version 3
e108dd18
Jan 29, 2019
version 2
59d2e9cd
Jan 28, 2019
version 1
fed84f3a
Jan 27, 2019
dev (base)
and
latest version
latest version
d0e98571
2 commits,
Feb 11, 2019
version 9
cba355f2
2 commits,
Feb 8, 2019
version 8
54beb28b
2 commits,
Feb 6, 2019
version 7
c1ad10b3
2 commits,
Feb 4, 2019
version 6
4f10ef0e
2 commits,
Feb 4, 2019
version 5
8c8e69a6
3 commits,
Feb 3, 2019
version 4
8c8e69a6
3 commits,
Jan 31, 2019
version 3
e108dd18
3 commits,
Jan 29, 2019
version 2
59d2e9cd
3 commits,
Jan 28, 2019
version 1
fed84f3a
1 commit,
Jan 27, 2019
6 files
+
423
−
51
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
bin/durs-server/src/main.rs
+
13
−
2
View file @ d0e98571
Show full file
@@ -33,6 +33,7 @@ pub use duniter_core::*;
#[cfg(unix)]
pub
use
durs_tui
::
TuiModule
;
//pub use durs_skeleton::SkeletonModule;
pub
use
durs_counter
::
CounterModule
;
pub
use
durs_ws2p_v1_legacy
::
WS2PModule
;
//pub use durs_ws2p::WS2Pv2Module;
use
structopt
::
StructOpt
;
@@ -42,10 +43,20 @@ use structopt::StructOpt;
#[cfg(not(target_arch
=
"arm"
))]
fn
main
()
{
durs_core_server!
(
durs_inject_cli!
[
WS2PModule
/*, SkeletonModule ,DasaModule*/
],
durs_plug!
([
WS2PModule
],
[
TuiModule
/*, SkeletonModule ,DasaModule*/
])
durs_inject_cli!
[
WS2PModule
,
CounterModule
/*, SkeletonModule ,DasaModule*/
],
durs_plug!
(
[
WS2PModule
],
[
TuiModule
,
CounterModule
/*, SkeletonModule ,DasaModule*/
]
)
);
}
#[cfg(unix)]
#[cfg(target_arch
=
"arm"
)]
fn
main
()
{
Loading