Document System Tutorial Part 1 - Build A Project (Current Progress)

Back to Previous Page

Structure:

main.go

Back to Top

package main

import (
    "github.com/uadmin/uadmin"
)

func main() {
    // Assign Site Name value as "Document System"
    // NOTE: This code works only if database does not exist yet.
    uadmin.SiteName = "Document System"

    // Activates a uAdmin server
    uadmin.StartServer()
}