mirror of https://github.com/curusarn/resh
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
303 B
14 lines
303 B
package main
|
|
|
|
func backup() {
|
|
panic("Backup not implemented yet!")
|
|
// Backup ~/.resh
|
|
// Backup xdg_data/resh/history.reshjson
|
|
// TODO: figure out history file localtions when using history sync
|
|
}
|
|
|
|
func rollback() {
|
|
panic("Rollback not implemented yet!")
|
|
// Rollback ~/.resh
|
|
// Rollback history
|
|
}
|
|
|