diff options
| author | Christoph Schlosser <christoph@linux.com> | 2018-10-20 14:57:16 +0200 |
|---|---|---|
| committer | Christoph Schlosser <christoph@linux.com> | 2018-10-20 14:57:16 +0200 |
| commit | 049502aa73c7d43627b9856219b18bf0da98a255 (patch) | |
| tree | 87148438d5580b6580964f77eacf2a29cf14debe /src/Lang/Python/PythonDocGen.ts | |
| parent | c0df4b403b3d760f9a9bd72d0da4967858bc4c53 (diff) | |
| download | doxdocgen-049502aa73c7d43627b9856219b18bf0da98a255.tar.gz | |
Add basic Python files
Diffstat (limited to 'src/Lang/Python/PythonDocGen.ts')
| -rw-r--r-- | src/Lang/Python/PythonDocGen.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Lang/Python/PythonDocGen.ts b/src/Lang/Python/PythonDocGen.ts new file mode 100644 index 0000000..4b90f86 --- /dev/null +++ b/src/Lang/Python/PythonDocGen.ts @@ -0,0 +1,8 @@ +import { Range } from "vscode"; +import { IDocGen } from "../../Common/IDocGen"; + +export class PythonDocGen implements IDocGen { + public GenerateDoc(rangeToReplace: Range) { + throw new Error("Method not implemented."); + } +} |