2022-06-17 22:55:09 +00:00
|
|
|
use crate::sql::part::Part;
|
|
|
|
use once_cell::sync::Lazy;
|
|
|
|
|
|
|
|
pub static ID: Lazy<[Part; 1]> = Lazy::new(|| [Part::from("id")]);
|
|
|
|
|
|
|
|
pub static IN: Lazy<[Part; 1]> = Lazy::new(|| [Part::from("in")]);
|
|
|
|
|
|
|
|
pub static OUT: Lazy<[Part; 1]> = Lazy::new(|| [Part::from("out")]);
|
2022-07-16 22:22:23 +00:00
|
|
|
|
|
|
|
pub static META: Lazy<[Part; 1]> = Lazy::new(|| [Part::from("__")]);
|