Skip to content

Commit

Permalink
chore: play
Browse files Browse the repository at this point in the history
  • Loading branch information
Zizzamia committed Mar 12, 2024
1 parent 1f18656 commit 255913d
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 1 deletion.
1 change: 1 addition & 0 deletions site/docs/pages/fiat/buy.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# `buy`
1 change: 1 addition & 0 deletions site/docs/pages/fiat/sell.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# `sell`
1 change: 1 addition & 0 deletions site/docs/pages/trade/swap.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# `swap`
3 changes: 3 additions & 0 deletions src/fiat/buy.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const buy = function () {
console.log('buy');
};
3 changes: 3 additions & 0 deletions src/fiat/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
// 🌲☀️🌲
export { buy } from './buy';
export { sell } from './sell';
3 changes: 3 additions & 0 deletions src/fiat/sell.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const sell = function () {
console.log('sell');
};
2 changes: 2 additions & 0 deletions src/trade/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// 🌲☀️🌲
export { swap } from './swap';
3 changes: 3 additions & 0 deletions src/trade/swap.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const swap = function () {
console.log('swap');
};
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = '0.10.2';
export const version = '0.10.2-play';

0 comments on commit 255913d

Please sign in to comment.