mirror of
https://github.com/tendermint/tendermint.git
synced 2026-05-28 18:10:20 +00:00
example/golang
This commit is contained in:
@@ -1,6 +1,9 @@
|
||||
# Tendermint Socket Protocol (TMSP)
|
||||
|
||||
**TMSP** is a socket protocol, which means applications can be written in any programming language.
|
||||
**TMSP** is a socket protocol enabling a consensus engine, running in one process,
|
||||
to manage an application state, running in another.
|
||||
Thus the applications can be written in any programming language.
|
||||
|
||||
TMSP is an asynchronous protocol: message responses are written back asynchronously to the platform.
|
||||
|
||||
*Applications must be deterministic.*
|
||||
|
||||
@@ -4,7 +4,7 @@ import (
|
||||
"flag"
|
||||
|
||||
. "github.com/tendermint/go-common"
|
||||
"github.com/tendermint/tmsp/example"
|
||||
"github.com/tendermint/tmsp/example/golang"
|
||||
"github.com/tendermint/tmsp/server"
|
||||
)
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ package main
|
||||
|
||||
import (
|
||||
. "github.com/tendermint/go-common"
|
||||
"github.com/tendermint/tmsp/example"
|
||||
"github.com/tendermint/tmsp/example/golang"
|
||||
"github.com/tendermint/tmsp/server"
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user