Revert comments in network service

This commit is contained in:
Augustinas Bacvinka 2023-01-07 18:28:43 +02:00 committed by Gusto Bacvinka
parent e11ce63c96
commit 53236ea5b7
1 changed files with 3 additions and 2 deletions

View File

@ -1,12 +1,13 @@
pub mod backends; pub mod backends;
// std
use std::fmt::{self, Debug}; use std::fmt::{self, Debug};
// crates
use async_trait::async_trait; use async_trait::async_trait;
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
use tokio::sync::broadcast; use tokio::sync::broadcast;
use tokio::sync::oneshot; use tokio::sync::oneshot;
// internal
use backends::NetworkBackend; use backends::NetworkBackend;
use overwatch_rs::services::{ use overwatch_rs::services::{
handle::ServiceStateHandle, handle::ServiceStateHandle,