Skip to content

Instantly share code, notes, and snippets.

@KMR-zoar
Created August 27, 2015 05:35
Show Gist options
  • Save KMR-zoar/cf74b9bf28480bc4f5cf to your computer and use it in GitHub Desktop.
Save KMR-zoar/cf74b9bf28480bc4f5cf to your computer and use it in GitHub Desktop.
Module Module1
Sub Main()
Console.Write(keys.ConKey + keys.ConSec + keys.AcToken + keys.AcSec)
End Sub
Private Function keys() As keyset
keys.ConKey = "A"
keys.ConSec = "B"
keys.AcToken = "C"
keys.AcSec = "D"
End Function
Private Structure keyset
Dim ConKey As String 'ConsumerKey
Dim ConSec As String 'ConsumerSecret
Dim AcToken As String 'AccessToken
Dim AcSec As String 'AccessTokenSecret
End Structure
End Module
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment