Incomplete checker for OpenBSD (will complete later)

This commit is contained in:
Bryan Chen 2024-04-25 01:01:57 -07:00
parent c98e0c0422
commit 939fd711bf
1 changed files with 21 additions and 0 deletions

21
checkers/openbsd.go Normal file
View File

@ -0,0 +1,21 @@
package checkers
import {
"fmt"
"io/ioutil"
"net/http"
"regexp"
"strings"
"time"
}
var OpenBSDProject Project = Project{
Name: "openbsd",
Properties: DefaultProjectProperties,
NumOfCheckers: 1,
Checkers: []*ProjectChecker {
GetDefaultChecker("openbsd", true, func(*Project) (bool, error) {
}),
}
}