Files
go-ssh-server/README.md

25 lines
256 B
Markdown
Raw Normal View History

# SSH Server
A simple SSH server implemented in Go.
## Installation
Clone the repository and build with Go:
```bash
go build -o ssh-server main.go
```
## Usage
Run the server:
```bash
./ssh-server
```
Or using Docker:
```bash
docker-compose up
```