deployed 2.0.1.RELEASE

master
剑器近 2021-06-11 18:19:15 +08:00
parent 4f358a38c8
commit b1705c5d5c
2 changed files with 5 additions and 1 deletions

View File

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.yezhihao</groupId>
<artifactId>netmc</artifactId>
<version>2.0.0.RELEASE</version>
<version>2.0.1.RELEASE</version>
<packaging>jar</packaging>
<name>Netmc</name>

View File

@ -100,6 +100,10 @@ public class Session {
return attributes.keySet();
}
public Map<Object, Object> getAttributes() {
return attributes;
}
public Object getAttribute(Object name) {
return attributes.get(name);
}