example/golang

This commit is contained in:
Ethan Buchman 2015-12-14 18:06:56 -05:00
parent af2a1a6fc1
commit 36b7045f5c
6 changed files with 6 additions and 3 deletions

View File

@ -1,6 +1,9 @@
# Tendermint Socket Protocol (TMSP) # 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. TMSP is an asynchronous protocol: message responses are written back asynchronously to the platform.
*Applications must be deterministic.* *Applications must be deterministic.*

View File

@ -4,7 +4,7 @@ import (
"flag" "flag"
. "github.com/tendermint/go-common" . "github.com/tendermint/go-common"
"github.com/tendermint/tmsp/example" "github.com/tendermint/tmsp/example/golang"
"github.com/tendermint/tmsp/server" "github.com/tendermint/tmsp/server"
) )

View File

@ -2,7 +2,7 @@ package main
import ( import (
. "github.com/tendermint/go-common" . "github.com/tendermint/go-common"
"github.com/tendermint/tmsp/example" "github.com/tendermint/tmsp/example/golang"
"github.com/tendermint/tmsp/server" "github.com/tendermint/tmsp/server"
) )