Advertisement
Guest User

Untitled

a guest
Jul 18th, 2017
479
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 1.21 KB | None | 0 0
  1. /*
  2.  * Copyright (c) 2017 Lucas Greuloch (greluc). All rights reserved.
  3.  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  4.  *
  5.  * This program is free software: you can redistribute it and/or modify
  6.  * it under the terms of the GNU General Public License as published by
  7.  * the Free Software Foundation, either version 3 of the License, or any later version.
  8.  *
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details (a copy is included in the LICENSE file
  13.  * that accompanied this code).
  14.  *
  15.  * Please contact lucas.greuloch@gmail.com
  16.  * or visit www.trådfri-central.de if you need additional information or have any
  17.  * questions.
  18.  */
  19.  
  20. package de.greluc.trådfri.core
  21.  
  22. /**
  23.  * This file is used to test some functionalities of the library.
  24.  *
  25.  * @author Lucas Greuloch (greluc)
  26.  * @version 1.0.0-SNAPSHOT 13.07.2017
  27.  */
  28.  
  29. fun main(args: Array<String>) {
  30.     println("Test started")
  31.  
  32.     val gateway = Gateway("1", "vs0.inf.ethz.ch")
  33.     val psk = "sesame"
  34.  
  35.     val client = SecureClient(gateway, psk)
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement