summary refs log tree commit diff homepage
path: root/src/index.ts
blob: d69cdb05de5e2ef7d04e3022f1a29c5a89b331ac (plain) (blame)
1
2
3
4
5
6
7
8
import Shulker from './Shulker'

const main = async () => {
  const shulker = new Shulker()
  await shulker.init()
}

main()