platformservice/ts/mta/mta.classes.dnsmanager.ts

10 lines
228 B
TypeScript
Raw Normal View History

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