This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" ?> | |
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" version="1.0" | |
targetNamespace="http://schemas.microsoft.com/office/2006/01/customui" | |
xmlns="http://schemas.microsoft.com/office/2006/01/customui" elementFormDefault="qualified" attributeFormDefault="unqualified"> | |
<xsd:annotation> | |
<xsd:documentation> | |
---------------------------------------------------------------------- | |
Schema definition for Ribbon Extensibility | |
---------------------------------------------------------------------- | |
</xsd:documentation> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: go | |
go: | |
- 1.13 | |
- 1.14 | |
- 1.15 | |
services: | |
- mysql | |
- redis |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
🌞 Morning 241 commits ██▌░░░░░░░░░░░░░░░░░░ 12.3% | |
🌆 Daytime 677 commits ███████▏░░░░░░░░░░░░░ 34.5% | |
🌃 Evening 745 commits ███████▉░░░░░░░░░░░░░ 38.0% | |
🌙 Night 299 commits ███▏░░░░░░░░░░░░░░░░░ 15.2% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Generated by pub | |
# See https://dart.dev/tools/pub/glossary#lockfile | |
packages: | |
_fe_analyzer_shared: | |
dependency: transitive | |
description: | |
name: _fe_analyzer_shared | |
url: "https://pub.flutter-io.cn" | |
source: hosted | |
version: "3.0.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package middleware | |
import ( | |
"fmt" | |
"github.com/Aoi-hosizora/ahlib/xnumber" | |
"github.com/gin-gonic/gin" | |
"github.com/sirupsen/logrus" | |
"math" | |
"time" | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package middleware | |
import ( | |
"fmt" | |
"github.com/Aoi-hosizora/RBAC-learn/src/common/exception" | |
"github.com/Aoi-hosizora/RBAC-learn/src/common/result" | |
"github.com/Aoi-hosizora/ahlib/xcolor" | |
"github.com/gin-gonic/gin" | |
"github.com/sirupsen/logrus" | |
"net/http/httputil" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package database | |
import ( | |
"fmt" | |
"github.com/gomodule/redigo/redis" | |
"github.com/sirupsen/logrus" | |
) | |
type RedisLogger struct { | |
conn redis.Conn |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package database | |
import ( | |
"database/sql/driver" | |
"fmt" | |
"github.com/sirupsen/logrus" | |
"reflect" | |
"regexp" | |
"time" | |
) |