UNPKG
@dawans/promptshield
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
Secure your LLM stack with enterprise-grade RulePacks for AI safety scanning
x.com/Sawyer0
@dawans/promptshield
/
dist
/
application
/
commands
/
init
/
InitCommand.js
14 lines
(13 loc)
•
318 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
InitCommand
=
void
0
;
/** * Init command data transfer object */
class
InitCommand
{
constructor
(
filename, options
) {
this
.
filename
= filename;
this
.
options
= options; } }
exports
.
InitCommand
=
InitCommand
;