getLegacyDnotePath returns a legacy dnote directory path placed under the user's home directory
(homeDir string)
| 180 | // getLegacyDnotePath returns a legacy dnote directory path placed under |
| 181 | // the user's home directory |
| 182 | func getLegacyDnotePath(homeDir string) string { |
| 183 | return fmt.Sprintf("%s/%s", homeDir, consts.LegacyDnoteDirName) |
| 184 | } |
| 185 | |
| 186 | // InitDB initializes the database. |
| 187 | // Ideally this process must be a part of migration sequence. But it is performed |
no outgoing calls
no test coverage detected