This repository has been archived by the owner on May 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
591157c
commit da55ab0
Showing
1 changed file
with
28 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,29 @@ | ||
# takeep | ||
The utility of never getting your texts lost! | ||
The utility π§ of never getting your texts π lost! Takeep is a simple command-line π§βπ» tool that keeps ποΈ your texts & lets you take them easily π. | ||
|
||
# How takeep works? | ||
Takeep is as simple as you can imagine! Add your text to takeep, give it a name, done! Now, you can access your text with 'take' command. | ||
|
||
``` | ||
> tkp keep -n myToken -c 239840984:sdofum0JDokcdfvjiSiodo | ||
β Successfully added the item! | ||
> tkp take -n myToken | ||
β This is the content of myToken: | ||
239840984:sdofum0JDokcdfvjiSiodo | ||
> tkp list | ||
β The list of items of default keepsheet: | ||
myToken | ||
> tkp edit -n myToken -c sdofum0JDokcdfvjiSiodo | ||
β Successfully edited the item! | ||
> tkp take -n myToken | ||
β This is the content of myToken: | ||
sdofum0JDokcdfvjiSiodo | ||
``` | ||
|
||
# Project files | ||
takeep is written in C# with Visual Studio. Currently, takeep has 2 main projects: | ||
- Takeep.Cli | ||
- Takeep.Core | ||
|
||
**Takeep.Cli** is the presentation project. It uses System.CommandLine to handle arguments for app call. | ||
**Takeep.Core** is the core project. It contains methods & functionality of takeep commands. |