mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-11-05 13:43:56 +01:00
8 lines
137 B
JavaScript
8 lines
137 B
JavaScript
class websiteFile{
|
|
constructor(path){
|
|
this.path=path
|
|
}
|
|
get viewerUrl(){
|
|
return String.raw`view?dataFile=${this.path}`
|
|
}
|
|
} |