Fixed auth on iOS, improved iSPEX and PlantNet Plugins

This commit is contained in:
Norbert Schmidt
2023-02-07 15:35:40 +01:00
parent 96734e4f60
commit ac973b7288
73 changed files with 1959 additions and 1524 deletions

View File

@@ -0,0 +1,17 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { ClassifyPage } from './classify.page';
const routes: Routes = [
{
path: '',
component: ClassifyPage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class ClassifyPageRoutingModule {}