Files
start-os/appmgr/src/version/v0_2_6.rs
Aiden McClelland 34abb6ae42 0.2.6
2020-11-30 21:58:56 -07:00

22 lines
435 B
Rust

use super::*;
const V0_2_6: emver::Version = emver::Version::new(0, 2, 6, 0);
pub struct Version;
#[async_trait]
impl VersionT for Version {
type Previous = v0_2_5::Version;
fn new() -> Self {
Version
}
fn semver(&self) -> &'static emver::Version {
&V0_2_6
}
async fn up(&self) -> Result<(), Error> {
Ok(())
}
async fn down(&self) -> Result<(), Error> {
Ok(())
}
}