1use tfhe_versionable::VersionsDispatch; 2 3use crate::Config; 4 5#[derive(VersionsDispatch)] 6pub enum ConfigVersions { 7 V0(Config), 8}