From d862e4b0354ef7ac93df265bf00b2f36585d00c8 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Mon, 4 May 2015 21:42:57 +1000 Subject: [PATCH] interruptfs.New --- samples/interruptfs/interrupt_fs.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/samples/interruptfs/interrupt_fs.go b/samples/interruptfs/interrupt_fs.go index 446de53..2e14f5d 100644 --- a/samples/interruptfs/interrupt_fs.go +++ b/samples/interruptfs/interrupt_fs.go @@ -45,7 +45,8 @@ type InterruptFS struct { } func New() (fs *InterruptFS) { - panic("TODO") + fs = &InterruptFS{} + return } ////////////////////////////////////////////////////////////////////////