2024-02-16 20:42:26 +01:00
|
|
|
import type { MtaService } from './mta.classes.mta.js';
|
2024-02-16 13:41:04 +01:00
|
|
|
import * as plugins from '../plugins.js';
|
2024-02-16 13:28:40 +01:00
|
|
|
|
|
|
|
export class DNSManager {
|
2024-02-16 20:42:26 +01:00
|
|
|
public mtaRef: MtaService;
|
2024-02-16 13:28:40 +01:00
|
|
|
|
2024-02-16 20:42:26 +01:00
|
|
|
constructor(mtaRefArg: MtaService) {
|
2024-02-16 13:28:40 +01:00
|
|
|
this.mtaRef = mtaRefArg;
|
|
|
|
}
|
|
|
|
}
|