10 lines
228 B
TypeScript
10 lines
228 B
TypeScript
import type { MtaService } from './mta.classes.mta.js';
|
|
import * as plugins from '../plugins.js';
|
|
|
|
export class DNSManager {
|
|
public mtaRef: MtaService;
|
|
|
|
constructor(mtaRefArg: MtaService) {
|
|
this.mtaRef = mtaRefArg;
|
|
}
|
|
} |