From fea22b905547ef727921ee37711d34cac3483f07 Mon Sep 17 00:00:00 2001 From: Naitik Shah Date: Tue, 5 Nov 2013 17:07:08 -0800 Subject: [PATCH] license and readme updates --- gracedemo/demo.go | 2 +- gracehttp/http.go | 2 +- gracehttp/http_test.go | 6 +++--- gracehttp/testserver/testserver.go | 2 +- license | 2 +- readme.md | 10 +++++----- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/gracedemo/demo.go b/gracedemo/demo.go index e787ea2..8be272c 100644 --- a/gracedemo/demo.go +++ b/gracedemo/demo.go @@ -5,7 +5,7 @@ package main import ( "flag" "fmt" - "github.com/daaku/go.grace/gracehttp" + "github.com/ParsePlatform/go.grace/gracehttp" "net/http" "os" "time" diff --git a/gracehttp/http.go b/gracehttp/http.go index 8f96c51..208a73c 100644 --- a/gracehttp/http.go +++ b/gracehttp/http.go @@ -13,7 +13,7 @@ import ( "net/http" "os" - "github.com/daaku/go.grace" + "github.com/ParsePlatform/go.grace" ) var ( diff --git a/gracehttp/http_test.go b/gracehttp/http_test.go index 580d80d..8e0e30a 100644 --- a/gracehttp/http_test.go +++ b/gracehttp/http_test.go @@ -16,15 +16,15 @@ import ( "testing" "time" - "github.com/daaku/go.freeport" - "github.com/daaku/go.tool" + "github.com/ParsePlatform/go.freeport" + "github.com/ParsePlatform/go.tool" ) var ( // Debug logging. debugLog = flag.Bool("debug", false, "enable debug logging") testserverCommand = &tool.CommandBuild{ - ImportPath: "github.com/daaku/go.grace/gracehttp/testserver", + ImportPath: "github.com/ParsePlatform/go.grace/gracehttp/testserver", } ) diff --git a/gracehttp/testserver/testserver.go b/gracehttp/testserver/testserver.go index 7ce16bf..91929b4 100644 --- a/gracehttp/testserver/testserver.go +++ b/gracehttp/testserver/testserver.go @@ -13,7 +13,7 @@ import ( "sync" "time" - "github.com/daaku/go.grace/gracehttp" + "github.com/ParsePlatform/go.grace/gracehttp" ) type response struct { diff --git a/license b/license index ebfef1f..3b5bc40 100644 --- a/license +++ b/license @@ -1,4 +1,4 @@ -Copyright 2013 Naitik Shah +Copyright 2013 Facebook, Inc Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/readme.md b/readme.md index 64e3d77..316decc 100644 --- a/readme.md +++ b/readme.md @@ -1,4 +1,4 @@ -go.grace [![Build Status](https://secure.travis-ci.org/daaku/go.grace.png)](http://travis-ci.org/daaku/go.grace) +go.grace [![Build Status](https://secure.travis-ci.org/ParsePlatform/go.grace.png)](http://travis-ci.org/ParsePlatform/go.grace) ======== Package grace provides a library that makes it easy to build socket @@ -17,11 +17,11 @@ Usage ----- Demo HTTP Server with graceful termination and restart: -https://github.com/daaku/go.grace/blob/master/gracedemo/demo.go +https://github.com/ParsePlatform/go.grace/blob/master/gracedemo/demo.go 1. Install the demo application - go get github.com/daaku/go.grace/gracedemo + go get github.com/ParsePlatform/go.grace/gracedemo 1. Start it in the first terminal @@ -55,7 +55,7 @@ Documentation ------------- `http.Server` graceful termination and restart: -http://godoc.org/github.com/daaku/go.grace/gracehttp +http://godoc.org/github.com/ParsePlatform/go.grace/gracehttp `net.Listener` graceful termination and restart: -http://godoc.org/github.com/daaku/go.grace +http://godoc.org/github.com/ParsePlatform/go.grace