2022-03-08 19:42:28 +01:00
|
|
|
from typing import List as _List
|
2022-03-11 18:41:49 +01:00
|
|
|
from risotto.utils import multi_function
|
2022-03-08 19:42:28 +01:00
|
|
|
|
|
|
|
|
|
|
|
@multi_function
|
|
|
|
def nginx_concat_lists(list1: _List[str],
|
|
|
|
list2: _List[str],
|
|
|
|
) -> _List[str]:
|
|
|
|
return list1 + list2
|