Skip to content

Commit

Permalink
ready
Browse files Browse the repository at this point in the history
  • Loading branch information
BalliAsghar committed Mar 24, 2022
0 parents commit 6a9075e
Show file tree
Hide file tree
Showing 11 changed files with 5,428 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
email.html
Binary file added icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/email.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/paper-plane-red.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/profile.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import alfy from "alfy";

import utils from "./utils/index.js";

const query = alfy.input;

switch (query) {
case "g":
utils.createAccount();
break;
case "d":
utils.deleteAccount();
break;
case "m":
utils.showMessages();
break;
case "me":
utils.showMe();
break;
}
Loading

0 comments on commit 6a9075e

Please sign in to comment.