mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
* new flow and endpoints * functional * prod build errors addressed * little more cleanup * transfer progress fixed * tor address fix * remove eslint cause sucks * fix skeleton text color and wording Co-authored-by: Matt Hill <matthewonthemoon@gmail.com> Co-authored-by: Drew Ansbacher <drew.ansbacher@spiredigital.com>
20 lines
585 B
TypeScript
20 lines
585 B
TypeScript
import { NgModule } from '@angular/core'
|
|
import { CommonModule } from '@angular/common'
|
|
import { IonicModule } from '@ionic/angular'
|
|
import { FormsModule } from '@angular/forms'
|
|
import { ProductKeyPage } from './product-key.page'
|
|
import { PasswordPageModule } from '../password/password.module'
|
|
import { ProductKeyPageRoutingModule } from './product-key-routing.module'
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
ProductKeyPageRoutingModule,
|
|
PasswordPageModule,
|
|
],
|
|
declarations: [ProductKeyPage],
|
|
})
|
|
export class ProductKeyPageModule { }
|