10 lines
150 B
Python
10 lines
150 B
Python
from typing import IO
|
|
|
|
from .types import DocumentTokens
|
|
|
|
def fb2_to_tokens(file: IO) -> DocumentTokens:
|
|
"""
|
|
TODO: implement
|
|
"""
|
|
|
|
pass |