Skip to content

ishehata/slark

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Slark

Slark is an admin panel like django-admin built for Go.

Slark makes it easy to quickly manage your web app models and save time focusing on your product instead of consuming time to write a control panel.

struct UserModel {
    ID string
    Name string
}

struct TagModel {
    ID string
    Title string
}

struct PostModel {
    ID string
    Title string
    Content string
    Author UserModel `relation:belongsTo`
    Tags []TagModel `relation:hasMany`
}

Slark.Register(UserModel)

Slark.Register(PostModel)

About

Slark is an admin panel like django-admin that makes controlling your web app easier and straight forward.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published