mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-12-25 22:03:49 +01:00
8 lines
138 B
JavaScript
8 lines
138 B
JavaScript
class websiteFile{
|
|
constructor(path){
|
|
this.path=path
|
|
}
|
|
get viewerUrl(){
|
|
return String.raw`/view?dataFile=${this.path}`
|
|
}
|
|
} |