mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-10-07 18:05:42 +00:00
8 lines
161 B
JavaScript
8 lines
161 B
JavaScript
import * as riot from 'riot';
|
|
import api from '../scripts/api';
|
|
|
|
export default me => {
|
|
riot.mixin('api', {
|
|
api: api.bind(null, me ? me.token : null)
|
|
});
|
|
};
|