6 lines
163 B
Python
6 lines
163 B
Python
from risotto.utils import multi_function as _multi_function
|
|
|
|
|
|
@_multi_function
|
|
def get_locations(usernames):
|
|
return ['/'] + ['/' + user for user in usernames]
|