24 lines
498 B
Go
24 lines
498 B
Go
// SPDX-FileCopyrightText: 2021 The NGI Pointer Secure-Scuttlebutt Team of 2020/2021
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
// +build dev
|
|
|
|
package web
|
|
|
|
import (
|
|
"net/http"
|
|
"path/filepath"
|
|
|
|
"go.mindeco.de/goutils"
|
|
)
|
|
|
|
const Production = false
|
|
|
|
// absolute path of where this package is located
|
|
var pkgDir = goutils.MustLocatePackage("github.com/ssb-ngi-pointer/go-ssb-room/v2/web")
|
|
|
|
var Templates = http.Dir(filepath.Join(pkgDir, "templates"))
|
|
|
|
var Assets = http.Dir(filepath.Join(pkgDir, "assets"))
|