UNPKG
@ehduardu/bat-framework
Version:
latest (1.2.3)
1.2.3
1.2.2
1.2.1
1.2.0
1.1.0
1.0.1
1.0.0
0.0.1
A simple framework for Google Apps Script
github.com/ehduardu/bat-framework
ehduardu/bat-framework
@ehduardu/bat-framework
/
templates
/
project
/
src
/
server
/
index.js
7 lines
(5 loc)
•
207 B
JavaScript
View Raw
1
2
3
4
5
6
7
import
doGet
from
'./webapp'
;
import
getScriptToken
from
'./controllers/ExampleController'
;
// Expose public functions by attaching to `global`
global
.
doGet
= doGet;
global
.
getScriptToken
= getScriptToken;