mirror of
https://github.com/nasa/openmct.git
synced 2024-12-20 13:43:09 +00:00
14 lines
151 B
JavaScript
14 lines
151 B
JavaScript
|
/*global define*/
|
||
|
|
||
|
define(
|
||
|
[],
|
||
|
function () {
|
||
|
"use strict";
|
||
|
|
||
|
function LogLevel() {
|
||
|
|
||
|
}
|
||
|
|
||
|
return LogLevel;
|
||
|
}
|
||
|
);
|