aboutsummaryrefslogtreecommitdiff
path: root/src/gnunet/enums/gnunet-dht.tpl
blob: 622ee79a9d938e9925282035eaf5c72749e9d657 (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 uint32

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