blob: 49282600b528ede570092ca229b1df6356787db8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from typing import List
def license_header() -> List[str]:
return [
"Copyright (c) Microsoft Corporation. All rights reserved.",
"Licensed under the MIT License.",
]
def package_description() -> List[str]:
return ["Language Server Protocol types for Rust generated from LSP specification."]
|