diff --git a/main.go b/main.go index 2c18366..5816ceb 100644 --- a/main.go +++ b/main.go @@ -25,11 +25,11 @@ func main() { panic(err) } - mlog, err := gowal.NewWAL("wal/msgs", "msgs_") + mlog, err := gowal.NewWAL("wal", "msgs_") if err != nil { panic(err) } - vlog, err := gowal.NewWAL("wal/votes", "votes_") + vlog, err := gowal.NewWAL("wal", "votes_") if err != nil { panic(err) }