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