Run Go Generate

This commit is contained in:
Melody Becker 2024-09-18 10:52:51 +02:00
parent 7f7bf1cacf
commit 1d66b44b34
3 changed files with 379 additions and 0 deletions

View file

@ -0,0 +1,26 @@
// Code generated by "stringer -type InboundJobSource"; DO NOT EDIT.
package storage
import "strconv"
func _() {
// An "invalid array index" compiler error signifies that the constant values have changed.
// Re-run the stringer command to generate them again.
var x [1]struct{}
_ = x[InJobSourceAccInbox-0]
_ = x[InJobSourceServerInbox-1]
_ = x[InJobSourceApiMasto-2]
_ = x[InJobSourceApiLinstrom-3]
}
const _InboundJobSource_name = "InJobSourceAccInboxInJobSourceServerInboxInJobSourceApiMastoInJobSourceApiLinstrom"
var _InboundJobSource_index = [...]uint8{0, 19, 41, 60, 82}
func (i InboundJobSource) String() string {
if i < 0 || i >= InboundJobSource(len(_InboundJobSource_index)-1) {
return "InboundJobSource(" + strconv.FormatInt(int64(i), 10) + ")"
}
return _InboundJobSource_name[_InboundJobSource_index[i]:_InboundJobSource_index[i+1]]
}