mirror of
https://github.com/sasjs/server.git
synced 2026-06-10 02:20:22 +00:00
feat(api): set up endpoint for sas code execution
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
export * from './sas'
|
||||
export * from './request'
|
||||
@@ -0,0 +1,6 @@
|
||||
export interface RequestQuery {
|
||||
_program: string
|
||||
}
|
||||
|
||||
export const isRequestQuery = (arg: any): arg is RequestQuery =>
|
||||
arg && !Array.isArray(arg) && typeof arg._program === 'string'
|
||||
@@ -0,0 +1,4 @@
|
||||
export interface ExecutionResult {
|
||||
log: string
|
||||
logPath: string
|
||||
}
|
||||
Reference in New Issue
Block a user