23 lines
505 B
Go
23 lines
505 B
Go
/*
|
|
Package main implements the rs2322tcp client application.
|
|
|
|
The client will provide a local virtual serial interface and
|
|
transparently transport serial data over TCP to the rs2322tcp server.
|
|
|
|
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-client %s\n", version.Version)
|
|
}
|