module-info

This commit is contained in:
redkale
2023-09-16 14:51:25 +08:00
parent 94121da0f3
commit 39eea4be5a
2 changed files with 1 additions and 28 deletions

View File

@@ -22,6 +22,7 @@ module org.redkale {
exports org.redkale.convert.bson;
exports org.redkale.convert.ext;
exports org.redkale.convert.json;
exports org.redkale.convert.protobuf;
exports org.redkale.mq;
exports org.redkale.net;
exports org.redkale.net.client;

View File

@@ -1,28 +0,0 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package org.redkale.convert.protobuf;
import org.redkale.annotation.Priority;
import org.redkale.convert.*;
/**
*
* @author zhangjx
*/
@Priority(-900)
public class ProtobufConvertProvider implements ConvertProvider {
@Override
public ConvertType type() {
return ConvertType.PROTOBUF;
}
@Override
public Convert convert() {
return ProtobufConvert.root();
}
}