24 lines
515 B
Go
24 lines
515 B
Go
/*
|
|
Package main implements the rs2322tcp server application.
|
|
|
|
The server will provide the network endpoint for rs2322tcp clients
|
|
and connect incoming connections to configured physical RS232
|
|
interfaces.
|
|
|
|
At this stage the application only provides the basic program
|
|
structure and version information.
|
|
|
|
Project: rs2322tcp
|
|
Module: git.lang-dieter.de/rs2322tcp
|
|
*/
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"git.lang-dieter.de/rs2322tcp/internal/version"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Printf("rs2322tcp-server %s\n", version.Version)
|
|
}
|