tomas/src/Tomas.Interface/IShell.cs
Tony Bark 7b47f7afd8 Switched to BSD 3-Cluase license
- Use global usings in main kernal project
2023-01-06 19:03:07 -05:00

13 lines
No EOL
296 B
C#

// I license this project under the BSD 3-Clause license.
// See the LICENSE file in the project root for more information.
using System.Collections.Generic;
namespace Tomas.Interface
{
public interface IShell
{
string ReadLine { get; }
Dictionary<string, IProgram> Programs { get; }
}
}