Skip to content

Commit 069e40d

Browse files
committed
fix(config): change YAML import to use namespace import syntax
1 parent 71fd15c commit 069e40d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/config/config.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Injectable, Logger } from '@nestjs/common';
22
import { Runpack as DBRunpack, PrismaClient } from '@prisma/client';
33
import { readFileSync, writeFileSync } from 'fs';
44
import { join } from 'path';
5-
import YAML from 'yaml';
5+
import * as YAML from 'yaml';
66
import { KubernetesService } from '../kubernetes/kubernetes.service';
77
import { INotification } from '../notifications/notifications.interface';
88
import { NotificationsService } from '../notifications/notifications.service';

0 commit comments

Comments
 (0)