cleanup after rebase

This commit is contained in:
Aiden McClelland
2022-01-21 18:52:24 -07:00
committed by Aiden McClelland
parent 3372da9f80
commit 9cf379f9ee
5 changed files with 1 additions and 45 deletions

View File

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

View File

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

View File

@@ -5,7 +5,6 @@
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "diagnostic-ui",
"version": "0.3.0", "version": "0.3.0",
"dependencies": { "dependencies": {
"@angular/animations": "^12.2.5", "@angular/animations": "^12.2.5",

View File

@@ -5,7 +5,6 @@
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "setup-wizard",
"version": "0.0.1", "version": "0.0.1",
"dependencies": { "dependencies": {
"@angular/common": "^12.2.1", "@angular/common": "^12.2.1",