9 lines
309 B
JavaScript
9 lines
309 B
JavaScript
/* eslint-disable no-unused-vars */
|
|
|
|
import ProtectedBranchCreate from './protected_branch_create';
|
|
import ProtectedBranchEditList from './protected_branch_edit_list';
|
|
|
|
$(() => {
|
|
const protectedBranchCreate = new ProtectedBranchCreate();
|
|
const protectedBranchEditList = new ProtectedBranchEditList();
|
|
});
|