mirror of
https://github.com/harness/drone.git
synced 2025-05-05 00:43:14 +08:00
17 lines
320 B
Go
17 lines
320 B
Go
// Copyright 2021 Harness, Inc. All rights reserved.
|
|
// Use of this source code is governed by the Polyform License
|
|
// that can be found in the LICENSE.md file.
|
|
|
|
//go:build !proxy
|
|
// +build !proxy
|
|
|
|
// Package dist embeds the static web server content.
|
|
package web
|
|
|
|
import (
|
|
"embed"
|
|
)
|
|
|
|
//go:embed dist/*
|
|
var UI embed.FS
|