Skip to content

Commit 749804c

Browse files
committed
clean up
1 parent 29f2cac commit 749804c

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

primitives/src/channel.rs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1+
use std::error::Error;
12
use std::fmt;
2-
//
3+
34
use chrono::serde::{ts_milliseconds, ts_seconds};
45
use chrono::{DateTime, Utc};
56
use serde::{Deserialize, Serialize};
6-
//
7+
78
use crate::big_num::BigNum;
89
use crate::util::serde::ts_milliseconds_option;
910
use crate::{AdUnit, EventSubmission, TargetingTag, ValidatorDesc};
10-
use std::error::Error;
1111

1212
#[derive(Serialize, Deserialize, Debug, Clone)]
1313
#[serde(rename_all = "camelCase")]
@@ -21,7 +21,6 @@ pub struct Channel {
2121
pub spec: ChannelSpec,
2222
}
2323

24-
//
2524
#[derive(Serialize, Deserialize, Debug, Clone)]
2625
#[serde(rename_all = "camelCase")]
2726
pub struct ChannelSpec {

0 commit comments

Comments
 (0)