first commit

This commit is contained in:
Ramiro Paz
2026-03-11 10:54:11 -03:00
parent bfeecb334a
commit aa0525a78c
85 changed files with 14079 additions and 0 deletions

27
src/domain/notify.go Normal file
View File

@ -0,0 +1,27 @@
package domain
//go:generate go-enum -f=$GOFILE --lower --marshal
// MessageStatus defines types for messages
// ENUM(
// Good
// Warning
// Stopper
// )
type MessageStatus int //nolint:recvcheck // The methods of this are autogenerated
// MessageChannel defines chats to which messages will be sent
// ENUM(
// Test
// Web
// Panic
// Error
// )
type MessageChannel int //nolint:recvcheck // The methods of this are autogenerated
type Channels struct {
Test string
Web string
Panic string
Error string
}