blob: 27d437f6cb24be0819a4c6efba615938a69a4702 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package com.gitblit.transport.ssh.commands;
import com.gitblit.models.UserModel;
public class PluginDispatchCommand extends DispatchCommand {
@Override
protected void registerCommands(UserModel user) {
// no op
}
}
|