12 lines
240 B
Go
12 lines
240 B
Go
|
/*
|
||
|
* Copyright (c) 2023 Laura Kalb <dev@lauka.net>
|
||
|
* The code of this project is available under the MIT license. See the LICENSE file for more info.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
package models
|
||
|
|
||
|
type DiscordMessage struct {
|
||
|
Content string `json:"content"`
|
||
|
}
|