aboutsummaryrefslogtreecommitdiff
path: root/src/gnunet/enums/gnunet-dht.tpl
blob: ed00e57f2f27a721ccf6278c19cf073574cccaa9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by enum generator; DO NOT EDIT.

//nolint:stylecheck // allow non-camel-case for constants
package enums

type BlockType uint16

// DHT block types
const (
{{ range $i, $kv := . }}BLOCK_TYPE_{{.Name}} BlockType = {{.Number}} // {{.Comment}}
{{ end }}
)