An open API service indexing awesome lists of open source software.

https://github.com/kzu/echoextension

A sample Terminal.Shell extension
https://github.com/kzu/echoextension

tsh

Last synced: 2 months ago
JSON representation

A sample Terminal.Shell extension

Awesome Lists containing this project

README

          

# Terminal.Shell EchoExtension

A sample extension with just one command.

Simply copy this to your own project and use `IMessageBus` to execute it:

```csharp
using Merq;
namespace EchoExtension;

public partial record Echo(string Message) : ICommand;
```