Coverage for wasmtime/bindgen/generated/imports/stdin.py: 88%

8 statements  

« prev     ^ index     » next       coverage.py v7.6.12, created at 2025-02-20 16:25 +0000

1from ..imports import streams 

2from abc import abstractmethod 

3from typing import Protocol 

4 

5InputStream = streams.InputStream 

6class HostStdin(Protocol): 

7 @abstractmethod 

8 def get_stdin(self) -> InputStream: 

9 raise NotImplementedError 

10