15 lines
284 B
Go
15 lines
284 B
Go
package store
|
|
|
|
import "github.com/maypok86/otter"
|
|
|
|
type RedmineSetup struct {
|
|
Chat int64
|
|
URL string
|
|
Key string
|
|
SaveHours bool
|
|
SPFieldName string
|
|
WaitingForSPField bool
|
|
}
|
|
|
|
var RedmineSetups otter.Cache[int64, *RedmineSetup]
|