24 lines
214 B
Go
24 lines
214 B
Go
package main
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Message struct {
|
|
sender string
|
|
timestamp time.Time
|
|
subject string
|
|
}
|
|
|
|
type User struct {
|
|
uid string
|
|
queue []Message
|
|
}
|
|
|
|
type State struct {
|
|
|
|
}
|
|
|
|
func main() {
|
|
|
|
}
|