mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-14 20:46:30 +00:00
17 lines
256 B
Go
17 lines
256 B
Go
|
package constants
|
||
|
|
||
|
const (
|
||
|
CommentFlag = "//"
|
||
|
ImportStartFlag = "\nimport (\n"
|
||
|
ImportEndFlag = "\n)"
|
||
|
|
||
|
Blank = " "
|
||
|
Indent = "\t"
|
||
|
Linebreak = "\n"
|
||
|
|
||
|
SectionSeparator = ":"
|
||
|
|
||
|
ParameterOpeningBrackets = "("
|
||
|
ParameterClosingBrackets = ")"
|
||
|
)
|