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 } ////////////////////////////////////////////////////////////////////////