Skip to content
Snippets Groups Projects
Unverified Commit 0b9c1fd7 authored by Kevin Lyda's avatar Kevin Lyda
Browse files

More notes

parent 6e92b52a
Branches
Tags
No related merge requests found
......@@ -14,6 +14,8 @@ Have readline store a history file for the user. Configure at the `accounts.Ope
Look up how godoc does references to other things.
Look up how to run migrations on the db from embedded files.
## Things to do
* Implement a better dclish parser.
......
......@@ -55,6 +55,7 @@ func Open(acc string) error {
if err != nil {
return errors.New("account preference database problem")
}
// TODO: run prefs migration - move this to a storage module.
bulldir := path.Join(xdg.DataHome, "BULLETIN")
err = os.MkdirAll(bulldir, 0700)
......@@ -65,6 +66,7 @@ func Open(acc string) error {
if err != nil {
return errors.New("bulletin database problem")
}
// TODO: run prefs migration - move this to a storage module.
return nil
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment