register_social.go raw

   1  //go:build !(js && wasm)
   2  
   3  package acl
   4  
   5  import (
   6  	"context"
   7  
   8  	"next.orly.dev/pkg/database"
   9  )
  10  
  11  func init() {
  12  	RegisterDriver("social", "WoT graph topology with inbound-trust rate limiting", socialFactory)
  13  }
  14  
  15  func socialFactory(ctx context.Context, db database.Database, cfg *DriverConfig) (I, error) {
  16  	s := new(Social)
  17  	return s, nil
  18  }
  19