mirror of
https://github.com/litruv/lit.ruv.wtf.git
synced 2026-07-24 02:36:02 +10:00
18 lines
512 B
JavaScript
18 lines
512 B
JavaScript
/**
|
|
* Donate command - Support the developer
|
|
*/
|
|
export default {
|
|
description: 'Support via donation',
|
|
execute: () => {
|
|
return [
|
|
'',
|
|
' If you enjoy what I do, consider buying me a iced coffee!',
|
|
'',
|
|
' 💳 Donate: https://donate.stripe.com/9AQdRv6ttfv40Ra289',
|
|
'',
|
|
' Your support allows me to continue developing and maintaining my projects, and is greatly appreciated!',
|
|
''
|
|
].join('\r\n');
|
|
}
|
|
};
|