From 9c6965487b11a4f03e429879c3310568301f40c3 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Fri, 27 Feb 2015 16:31:04 +1100 Subject: [PATCH] Split up the samples package. --- samples/{ => hellofs}/hello_fs.go | 2 +- samples/{ => hellofs}/hello_fs_test.go | 2 +- samples/{ => memfs}/mem_fs.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename samples/{ => hellofs}/hello_fs.go (99%) rename samples/{ => hellofs}/hello_fs_test.go (99%) rename samples/{ => memfs}/mem_fs.go (99%) diff --git a/samples/hello_fs.go b/samples/hellofs/hello_fs.go similarity index 99% rename from samples/hello_fs.go rename to samples/hellofs/hello_fs.go index de2df3a..b7802d3 100644 --- a/samples/hello_fs.go +++ b/samples/hellofs/hello_fs.go @@ -1,7 +1,7 @@ // Copyright 2015 Google Inc. All Rights Reserved. // Author: jacobsa@google.com (Aaron Jacobs) -package samples +package hellofs import ( "io" diff --git a/samples/hello_fs_test.go b/samples/hellofs/hello_fs_test.go similarity index 99% rename from samples/hello_fs_test.go rename to samples/hellofs/hello_fs_test.go index 2694f56..16edc7a 100644 --- a/samples/hello_fs_test.go +++ b/samples/hellofs/hello_fs_test.go @@ -1,7 +1,7 @@ // Copyright 2015 Google Inc. All Rights Reserved. // Author: jacobsa@google.com (Aaron Jacobs) -package samples_test +package hellofs_test import ( "io" diff --git a/samples/mem_fs.go b/samples/memfs/mem_fs.go similarity index 99% rename from samples/mem_fs.go rename to samples/memfs/mem_fs.go index 7e0af09..22ed9db 100644 --- a/samples/mem_fs.go +++ b/samples/memfs/mem_fs.go @@ -1,7 +1,7 @@ // Copyright 2015 Google Inc. All Rights Reserved. // Author: jacobsa@google.com (Aaron Jacobs) -package samples +package memfs import ( "sync"