This website works better with JavaScript.
Home
Explore
Help
Sign In
titouan
/
solstice
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Move FakeServer to proto::server.
wip
Titouan Rigoudy
4 years ago
parent
903864f1cd
commit
621274aac1
3 changed files
with
2 additions
and
2 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-2
src/proto/mod.rs
+2
-0
src/proto/server/mod.rs
+0
-0
src/proto/server/testing.rs
+ 0
- 2
src/proto/mod.rs
View File
@ -4,8 +4,6 @@ mod packet;
pub
mod
peer
;
pub
mod
peer
;
pub
mod
server
;
pub
mod
server
;
mod
stream
;
mod
stream
;
#[
cfg(test)
]
mod
testing
;
mod
user
;
mod
user
;
pub
use
self
::
handler
::
*
;
pub
use
self
::
handler
::
*
;
+ 2
- 0
src/proto/server/mod.rs
View File
@ -1,6 +1,8 @@
mod
constants
;
mod
constants
;
mod
request
;
mod
request
;
mod
response
;
mod
response
;
#[
cfg(test)
]
mod
testing
;
pub
use
self
::
request
::
*
;
pub
use
self
::
request
::
*
;
pub
use
self
::
response
::
*
;
pub
use
self
::
response
::
*
;
src/proto/testing.rs → src/proto/server/testing.rs
View File
Write
Preview
Loading…
Cancel
Save