1
2
3
4
5
use crate::var::VariableType;

pub fn get<T: VariableType>(_user_id: i64, _name: &str) -> T {
    todo!()
}