10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-23 11:17:42 +02:00

Add websiteFile clas

This commit is contained in:
Mickaël Véril 2019-09-30 09:53:07 +02:00
parent f9512999e0
commit 3f1603a211

View File

@ -0,0 +1,8 @@
class websiteFile{
constructor(path){
this.path=path
}
get viewerUrl(){
return String.raw`view?dataFile=${this.path}`
}
}