11 lines
480 B
Go
11 lines
480 B
Go
// Package yggdrasil implement Yggdrasil protocol.
|
|
//
|
|
// Minecraft 1.6 introduced a new authentication scheme called Yggdrasil
|
|
// which completely replaces the previous authentication system.
|
|
// Mojang's other game, Scrolls, uses this method of authentication as well.
|
|
// Mojang has said that this authentication system should be used by everyone for custom logins,
|
|
// but credentials should never be collected from users. ----- https://wiki.vg
|
|
package yggdrasil
|
|
|
|
var Server = ""
|