
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.
10 lines
432 B
Go
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"
|
|
)
|