flamenco/pkg/website/urls.go
Sybren A. Stüvel 70faa4e225 Move URLs to the Flamenco website to constants in a dedicated package
Create a dedicated package `.../pkg/website` to contain constants for the
URLs of documentation, bug reporting, etc. That way it's easier to see
which parts of the website are being referred to from the Flamenco
binaries, and updates can happen in a central spot.

No functional changes.
2024-01-25 12:25:06 +01:00

10 lines
432 B
Go

// package website contains references to the Flamenco website.
// Constants defined here can be used in the rest of Flamenco, for example for log messages.
package website
const (
DocVariablesURL = "https://flamenco.blender.org/usage/variables/blender/"
BugReportURL = "https://flamenco.blender.org/get-involved"
ShamanRequirementsURL = "https://flamenco.blender.org/usage/shared-storage/shaman/#requirements"
)