mirror of
https://github.com/shazow/ssh-chat.git
synced 2025-04-17 17:32:22 +03:00
16 lines
203 B
Go
16 lines
203 B
Go
package sshchat
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/shazow/ssh-chat/chat/message"
|
|
"github.com/shazow/ssh-chat/sshd"
|
|
)
|
|
|
|
type Client struct {
|
|
user *message.User
|
|
conn sshd.Connection
|
|
|
|
timestamp time.Time
|
|
}
|