Preliminary work
This commit is contained in:
parent
67ed4524dc
commit
81eed730aa
3 changed files with 28 additions and 0 deletions
7
Cargo.lock
generated
Normal file
7
Cargo.lock
generated
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# This file is automatically @generated by Cargo.
|
||||
# It is not intended for manual editing.
|
||||
version = 4
|
||||
|
||||
[[package]]
|
||||
name = "bookmark-manager-rs"
|
||||
version = "0.1.0"
|
||||
6
Cargo.toml
Normal file
6
Cargo.toml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
[package]
|
||||
name = "bookmark-manager-rs"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
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