10 lines
233 B
Python
10 lines
233 B
Python
|
from typing import List as _List
|
||
|
from utils import multi_function
|
||
|
|
||
|
|
||
|
@multi_function
|
||
|
def nginx_concat_lists(list1: _List[str],
|
||
|
list2: _List[str],
|
||
|
) -> _List[str]:
|
||
|
return list1 + list2
|