mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-02 05:23:14 +00:00
* proxies * OS outbound proxy. ugly, needs work * abstract interface address management * clearnet and outbound proxies for services * clean up * router tab * smart launching of UIs * update sdk types * display outbound proxy on service show and rework menu
20 lines
538 B
TypeScript
20 lines
538 B
TypeScript
import { NgModule } from '@angular/core'
|
|
import { CommonModule } from '@angular/common'
|
|
import { IonicModule } from '@ionic/angular'
|
|
import {
|
|
InterfaceAddressesComponent,
|
|
InterfaceAddressItemComponent,
|
|
InterfaceClearnetPipe,
|
|
} from './interface-addresses.component'
|
|
|
|
@NgModule({
|
|
imports: [CommonModule, IonicModule],
|
|
declarations: [
|
|
InterfaceAddressesComponent,
|
|
InterfaceAddressItemComponent,
|
|
InterfaceClearnetPipe,
|
|
],
|
|
exports: [InterfaceAddressesComponent],
|
|
})
|
|
export class InterfaceAddressesComponentModule {}
|