Preliminary work
This commit is contained in:
parent
67ed4524dc
commit
81eed730aa
3 changed files with 28 additions and 0 deletions
15
src/main.rs
Normal file
15
src/main.rs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
struct Bookmark {
|
||||
link: String,
|
||||
comment: String,
|
||||
}
|
||||
|
||||
/* Desired actions:
|
||||
* - add new bookmark/reading list item
|
||||
* - get bookmark
|
||||
* - get RL item and remove/delist
|
||||
* - ensure nothing is lost accidentally
|
||||
*/
|
||||
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue