mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-18 15:55:30 +00:00
10 lines
221 B
JavaScript
10 lines
221 B
JavaScript
import { ResourceCustomAttributes } from '../templates';
|
|
|
|
class GroupCustomAttributes extends ResourceCustomAttributes {
|
|
constructor(options) {
|
|
super('groups', options);
|
|
}
|
|
}
|
|
|
|
export default GroupCustomAttributes;
|