mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-19 18:07:45 +08:00
11 lines
173 B
Go
11 lines
173 B
Go
package xml
|
|
|
|
const (
|
|
leftAngleBracket = '<'
|
|
rightAngleBracket = '>'
|
|
forwardSlash = '/'
|
|
colon = ':'
|
|
equals = '='
|
|
quote = '"'
|
|
)
|