Port the mouse_demo kitten to Go

This commit is contained in:
Kovid Goyal
2023-10-17 20:21:22 +05:30
parent c03dff2322
commit ee8399ba56
5 changed files with 77 additions and 80 deletions

View File

@@ -133,7 +133,7 @@ def run_kitten(kitten: str, run_name: str = '__main__') -> None:
def all_kitten_names() -> FrozenSet[str]:
ans = []
for name in list_kitty_resources('kittens'):
if '__' not in name and '.' not in name and name != 'tui':
if '__' not in name and '.' not in name and name not in ('tui', 'mouse_demo'):
ans.append(name)
return frozenset(ans)