mirror of
https://github.com/sasjs/core.git
synced 2026-01-17 21:40:06 +00:00
chore: more indentation fixes
This commit is contained in:
@@ -5,7 +5,8 @@
|
|||||||
Code is passed in as one or more filerefs.
|
Code is passed in as one or more filerefs.
|
||||||
|
|
||||||
%* Step 1 - compile macros ;
|
%* Step 1 - compile macros ;
|
||||||
filename mc url "https://raw.githubusercontent.com/sasjs/core/main/all.sas";
|
filename mc url
|
||||||
|
"https://raw.githubusercontent.com/sasjs/core/main/all.sas";
|
||||||
%inc mc;
|
%inc mc;
|
||||||
|
|
||||||
%* Step 2 - Create some SAS code and add it to a job;
|
%* Step 2 - Create some SAS code and add it to a job;
|
||||||
|
|||||||
@@ -5,7 +5,8 @@
|
|||||||
Code is passed in as one or more filerefs.
|
Code is passed in as one or more filerefs.
|
||||||
|
|
||||||
%* Step 1 - compile macros ;
|
%* Step 1 - compile macros ;
|
||||||
filename mc url "https://raw.githubusercontent.com/sasjs/core/main/all.sas";
|
filename mc url
|
||||||
|
"https://raw.githubusercontent.com/sasjs/core/main/all.sas";
|
||||||
%inc mc;
|
%inc mc;
|
||||||
|
|
||||||
%* Step 2 - Create some code and add it to a web service;
|
%* Step 2 - Create some code and add it to a web service;
|
||||||
@@ -18,7 +19,7 @@
|
|||||||
run;
|
run;
|
||||||
%* send data back;
|
%* send data back;
|
||||||
%webout(OPEN)
|
%webout(OPEN)
|
||||||
%webout(ARR,example1) * Array format, fast, suitable for large tables ;
|
%webout(ARR,example1) * Array format, fast, suitable for large tables;
|
||||||
%webout(OBJ,example2) * Object format, easier to work with ;
|
%webout(OBJ,example2) * Object format, easier to work with ;
|
||||||
%webout(CLOSE)
|
%webout(CLOSE)
|
||||||
;;;;
|
;;;;
|
||||||
@@ -52,7 +53,8 @@
|
|||||||
adapter, add a (different) fileref here.
|
adapter, add a (different) fileref here.
|
||||||
@param contextname= Choose a specific context on which to run the Job. Leave
|
@param contextname= Choose a specific context on which to run the Job. Leave
|
||||||
blank to use the default context. From Viya 3.5 it is possible to configure
|
blank to use the default context. From Viya 3.5 it is possible to configure
|
||||||
a shared context - see https://go.documentation.sas.com/?docsetId=calcontexts&docsetTarget=n1hjn8eobk5pyhn1wg3ja0drdl6h.htm&docsetVersion=3.5&locale=en
|
a shared context - see
|
||||||
|
https://go.documentation.sas.com/?docsetId=calcontexts&docsetTarget=n1hjn8eobk5pyhn1wg3ja0drdl6h.htm&docsetVersion=3.5&locale=en
|
||||||
|
|
||||||
@version VIYA V.03.04
|
@version VIYA V.03.04
|
||||||
@author Allan Bowe, source: https://github.com/sasjs/core
|
@author Allan Bowe, source: https://github.com/sasjs/core
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/**
|
/**
|
||||||
@file mv_getaccesstoken.sas
|
@file mv_getaccesstoken.sas
|
||||||
@brief deprecated - replaced by mv_tokenrefresh.sas
|
@brief deprecated - replaced by mv_tokenrefresh.sas
|
||||||
|
|
||||||
@@ -8,9 +8,9 @@
|
|||||||
<h4> SAS Macros </h4>
|
<h4> SAS Macros </h4>
|
||||||
@li mv_tokenrefresh.sas
|
@li mv_tokenrefresh.sas
|
||||||
|
|
||||||
**/
|
**/
|
||||||
|
|
||||||
%macro mv_getaccesstoken(client_id=someclient
|
%macro mv_getaccesstoken(client_id=someclient
|
||||||
,client_secret=somesecret
|
,client_secret=somesecret
|
||||||
,grant_type=authorization_code
|
,grant_type=authorization_code
|
||||||
,code=
|
,code=
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/**
|
/**
|
||||||
@file
|
@file
|
||||||
@brief deprecated - replaced by mv_registerclient.sas
|
@brief deprecated - replaced by mv_registerclient.sas
|
||||||
|
|
||||||
@@ -8,9 +8,9 @@
|
|||||||
<h4> SAS Macros </h4>
|
<h4> SAS Macros </h4>
|
||||||
@li mv_registerclient.sas
|
@li mv_registerclient.sas
|
||||||
|
|
||||||
**/
|
**/
|
||||||
|
|
||||||
%macro mv_getapptoken(client_id=someclient
|
%macro mv_getapptoken(client_id=someclient
|
||||||
,client_secret=somesecret
|
,client_secret=somesecret
|
||||||
,grant_type=authorization_code
|
,grant_type=authorization_code
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user