mirror of
https://lab.forgefriends.org/friendlyforgeformat/gof3.git
synced 2025-10-06 08:02:46 +02:00
13 lines
221 B
Go
13 lines
221 B
Go
// Copyright Earl Warren <contact@earl-warren.org>
|
|
// Copyright Loïc Dachary <loic@dachary.org>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package generic
|
|
|
|
type Kind string
|
|
|
|
var (
|
|
KindNil = Kind("")
|
|
KindRoot = Kind("<root>")
|
|
)
|