mirror of
https://github.com/danbulant/Nertivia-Client
synced 2026-06-15 04:21:19 +00:00
10 lines
No EOL
247 B
JavaScript
10 lines
No EOL
247 B
JavaScript
import {instance, wrapper} from './Api';
|
|
|
|
export default {
|
|
post ( uniqueID ) {
|
|
return wrapper(instance().post(`channels/${ uniqueID }`));
|
|
},
|
|
delete ( channelID ) {
|
|
return wrapper(instance().delete(`channels/${ channelID }`));
|
|
}
|
|
} |