aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/messages.go
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-03-30 03:26:47 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-03-30 03:26:47 +0800
commit04a7c4ae1e7fe9683854fd759cad0e5e04a2f2c0 (patch)
tree8065b02924ccbacb192ce33b74ea45a387819528 /rpc/messages.go
parent24fc1f073dd5ec0302937fb51729991dd9a40ba3 (diff)
downloadgo-tangerine-04a7c4ae1e7fe9683854fd759cad0e5e04a2f2c0.tar
go-tangerine-04a7c4ae1e7fe9683854fd759cad0e5e04a2f2c0.tar.gz
go-tangerine-04a7c4ae1e7fe9683854fd759cad0e5e04a2f2c0.tar.bz2
go-tangerine-04a7c4ae1e7fe9683854fd759cad0e5e04a2f2c0.tar.lz
go-tangerine-04a7c4ae1e7fe9683854fd759cad0e5e04a2f2c0.tar.xz
go-tangerine-04a7c4ae1e7fe9683854fd759cad0e5e04a2f2c0.tar.zst
go-tangerine-04a7c4ae1e7fe9683854fd759cad0e5e04a2f2c0.zip
Abstract http into rpc package
New RpcConfig object to pass growing config
Diffstat (limited to 'rpc/messages.go')
-rw-r--r--rpc/messages.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/rpc/messages.go b/rpc/messages.go
index 5c498234f..43c4d5e0d 100644
--- a/rpc/messages.go
+++ b/rpc/messages.go
@@ -21,6 +21,12 @@ import (
"fmt"
)
+type RpcConfig struct {
+ ListenAddress string
+ ListenPort uint
+ CorsDomain string
+}
+
type InvalidTypeError struct {
method string
msg string