mirror of
https://github.com/ChipmunkMC/node-brigadier-commands.git
synced 2024-11-14 19:14:55 -05:00
9 lines
183 B
JavaScript
9 lines
183 B
JavaScript
class LiteralMessage {
|
|
constructor (string) { this.string = string }
|
|
|
|
getString () { return this.string }
|
|
|
|
toString () { return this.string }
|
|
}
|
|
|
|
module.exports = LiteralMessage
|