Skip to content

Commit 1b55870

Browse files
committed
mv
1 parent a52aead commit 1b55870

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

lib/service.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
import { LoggerFacade, LogLevel, LogLevelToLower } from './logging/logger'
1818
import { resolvablePromise, ResolvablePromise } from "./utils/promise/resolvablePromise";
1919

20+
export const SERVICE_FAILED_TO_START = '%s failed to start, reason: %s';
21+
export const SERVICE_STOPPED_BEFORE_RUNNING = '%s stopped before running';
2022

2123
/**
2224
* The service interface represents an object with an operational state,
@@ -130,7 +132,3 @@ export abstract class BaseService implements Service {
130132

131133
abstract stop(): void;
132134
}
133-
134-
135-
export const SERVICE_FAILED_TO_START = '%s failed to start, reason: %s';
136-
export const SERVICE_STOPPED_BEFORE_RUNNING = '%s stopped before running';

0 commit comments

Comments
 (0)