diff options
author | Ben Morrison <ben@gbmor.dev> | 2019-06-06 15:25:02 -0400 |
---|---|---|
committer | Ben Morrison <ben@gbmor.dev> | 2019-06-08 02:29:17 -0400 |
commit | 469542518c4bb4db00774734c9cb257cd0050076 (patch) | |
tree | ed42f78dbc593102fc9b027962c465153e7d36d0 /svc/init.go | |
parent | 3fe7510b7617780e6bcd7bd9a5575f11f59b6e15 (diff) | |
download | getwtxt-469542518c4bb4db00774734c9cb257cd0050076.tar.gz |
moved type declarations into respective files
Diffstat (limited to 'svc/init.go')
-rw-r--r-- | svc/init.go | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/svc/init.go b/svc/init.go index 01e1192..aed3449 100644 --- a/svc/init.go +++ b/svc/init.go @@ -38,17 +38,7 @@ var twtxtCache = registry.NewIndex() var remoteRegistries = &RemoteRegistries{} -var staticCache = &struct { - index []byte - indexMod time.Time - css []byte - cssMod time.Time -}{ - index: nil, - indexMod: time.Time{}, - css: nil, - cssMod: time.Time{}, -} +var staticCache = &staticAssets{} // I'm not using init() because it runs // even during testing and was causing |