mirror of
https://github.com/bytedream/docker4ssh.git
synced 2025-05-09 12:15:11 +02:00
13 lines
181 B
Go
13 lines
181 B
Go
package docker
|
|
|
|
import (
|
|
"docker4ssh/database"
|
|
"github.com/docker/docker/client"
|
|
)
|
|
|
|
type Client struct {
|
|
Client *client.Client
|
|
Database *database.Database
|
|
Network Network
|
|
}
|