Some checks failed
Release Docker Image / Build & Push Docker Image (release) Failing after 1m30s
14 lines
347 B
Go
14 lines
347 B
Go
// Keywarden - Centralized SSH Key Management and Deployment
|
|
// Copyright (C) 2026 Patrick Asmus (scriptos)
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
package web
|
|
|
|
import "embed"
|
|
|
|
//go:embed templates/* templates/layout/*
|
|
var TemplateFS embed.FS
|
|
|
|
//go:embed static/css/* static/css/fonts/* static/js/* static/favicon.svg
|
|
var StaticFS embed.FS
|