1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21

#[allow(non_upper_case_globals)]
pub const amount: &'static str = "amount";

#[allow(non_upper_case_globals)]
pub const card: &'static str = "card";

#[allow(non_upper_case_globals)]
pub const date_created: &'static str = "date_created";

#[allow(non_upper_case_globals)]
pub const goal: &'static str = "goal";

#[allow(non_upper_case_globals)]
pub const name: &'static str = "name";

#[allow(non_upper_case_globals)]
pub const project_id: &'static str = "project_id";

#[allow(non_upper_case_globals)]
pub const user_id: &'static str = "user_id";