-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautomaton.go
executable file
·80 lines (65 loc) · 2.59 KB
/
automaton.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*************************************************************************
# #
# Automaton Framework re-implemented in Golang #
# #
# Automation & Auditing Toolkit #
# #
# Copyright (C) 2010 by Vamegh Hedayati #
# Golang re-implementation Copyright (C) 2012 by Vamegh Hedayati #
# #
# Please see Copying for License Information #
# GNU/GPL v2 2010 / 2012 #
*************************************************************************/
/*
Automation & Auditing Toolkit
Copyright (C) 2010/2012 by Vamegh Hedayati
Please see Copying for License Information
GNU/GPL v2 2010 / 2012
*/
package main
/***********************************************
# Libraries / Modules
##
# These are the libraries / modules
# necessary to compile this program
##
***********************************************/
import (
//"fmt"
//"io"
//"crypto/sha512"
log "automaton/libs/logger"
"automaton/libs/filehandler"
)
/***********************************************
# Sub-Routines / Functions Definitions
##
# This is the actual Body
##
***********************************************/
func main () {
// This is the main program which calls in everything else.
caller := "Automaton :: Main ::"
log.Notelog("Welcome to Automaton",&caller)
log.Deblog("Development Starting oh yeah !!",3,&caller)
/*
it := "Hello, Hello"
hit := sha512.New()
io.WriteString(hit,it)
fmt.Printf("% x", hit.Sum(nil))
log.DebugL("hello", "debug", 1, "main")
log.DebugL("hello", "debug", 3, "main")
log.DebugL("Oh Noes ... ", "error", 3, "main")
*/
//func It (message string, logtype string, loglev int, caller string)
//func Read_cfg (cfg_type *string, cfg_file *string, cfg_handle *string)
filen := "/home/vdopey/example.txt"
filet := "cfgpars"
fileh := ""
filehandler.Read_cfg (filet,&filen,fileh)
}
/************************************************************************
### EOF ###
*************************************************************************/